Bootstrap

DeepSeek 助力 Vue3 开发:打造丝滑的标签输入(Tag Input)

前言:哈喽,大家好,今天给大家分享一篇文章!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕

共同探索软件研发!敬请关注【宝码香车】
关注描述

csdngif标识


📚📗📕📘📖🕮💡📝🗂️✍️🛠️💻🚀🎉🏗️🌐🖼️🔗📊👉🔖⚠️🌟🔐⬇️·正文开始⬇️·🎥😊🎓📩😺🌈🤝🤖📜📋🔍✅🧰❓📄📢📈 🙋0️⃣1️⃣2️⃣3️⃣4️⃣5️⃣6️⃣7️⃣8️⃣9️⃣🔟🆗*️⃣#️⃣

DeepSeek 助力 Vue3 开发:打造丝滑的标签输入(Tag Input)

📚前言

随着人工智能技术的飞速发展,DeepSeek 作为大语言模型领域的佼佼者,未来在技术发展上有望取得更多突破,展现出更为广阔的发展前景。

在模型性能提升方面,DeepSeek 有望持续优化算法和模型架构,进一步提升模型的语言理解和生成能力。通过引入更先进的深度学习算法,如基于 Transformer 架构的改进版本,能够更高效地处理和分析海量文本数据,从而在语言理解和生成任务中表现得更加出色。在处理复杂的语义理解任务时,能够更准确地把握文本的含义和语境,生成更加自然流畅、逻辑严谨的文本内容。同时,不断扩大模型的规模和参数数量,增加模型的知识储备和学习能力,使其能够应对更复杂、更广泛的任务需求。随着模型规模的不断扩大,其能够学习到的知识和模式也将更加丰富,从而在处理各种任务时能够提供更准确、更全面的解决方案。

📚页面效果

DeepSeek 助力 Vue3 开发:打造丝滑的标签输入(Tag Input)页面效果

📚指令输入

1. 标签输入(Tag Input)

已经创建好了一个基于Vue3的组合式API的项目(Composition API),并能正常运行起来,请帮我用 Vue3的组合式API(Composition API) 生成一个 标签输入(Tag Input) 的功能组件,所有代码都保存在components/TagInput 下的文件夹中。功能组件的script标签中只有setup属性,使用普通 JavaScript 实现,不使用TypeScript。
功能要有,如下属性:

属性定义

数据相关属性
  1. modelValue
    • 类型:Array
    • 作用:用于双向数据绑定,存储当前输入的标签列表。
  2. tags
    • 类型:Array
    • 作用:初始化标签列表,可用于预设一些标签。
  3. maxTags
    • 类型:Number
    • 作用:限制最多能输入的标签数量。
  4. minTags
    • 类型:Number
    • 作用:限制最少需要输入的标签数量。
输入相关属性
  1. placeholder
    • 类型:String
    • 作用:输入框的占位提示文本。
  2. separator
    • 类型:StringArray
    • 作用:指定标签的分隔符,如逗号、空格等,用户输入时以此分隔不同标签。
  3. allowDuplicates
    • 类型:Boolean
    • 作用:是否允许输入重复的标签。
样式相关属性
  1. size
    • 类型:String,可选值如 'small', 'medium', 'large'
    • 作用:控制组件的大小。
  2. inputStyle
    • 类型:ObjectString
    • 作用:自定义输入框的样式。
  3. tagStyle
    • 类型:ObjectString
    • 作用:自定义标签的样式。
验证相关属性
  1. pattern
    • 类型:RegExpString
    • 作用:用于验证输入的标签是否符合特定的正则表达式。
  2. maxLength
    • 类型:Number
    • 作用:限制单个标签的最大长度。

事件定义

  1. update:modelValue
    • 作用:当标签列表发生变化时触发,用于更新 modelValue 的值,实现双向数据绑定。
  2. add
    • 作用:当成功添加一个新标签时触发,传递新添加的标签作为参数。
  3. remove
    • 作用:当成功移除一个标签时触发,传递被移除的标签作为参数。
  4. input
    • 作用:输入框内容发生变化时触发,可用于实时验证或处理输入内容。
  5. blur
    • 作用:输入框失去焦点时触发。
  6. focus
    • 作用:输入框获得焦点时触发。

其他

组件设计
  1. 支持删除动画:为标签的删除操作添加动画效果,提升用户体验。
  2. 可编辑标签:允许用户双击标签进行编辑,增强交互性。
  3. 自动完成功能:提供自动完成建议,根据用户输入的内容从预设列表中匹配并提示。
  4. 支持键盘操作:如使用回车键添加标签,使用删除键删除标签等,方便用户操作。
文档和示例
  1. 详细文档:提供清晰的组件文档,包括属性说明、事件说明、使用示例等,方便其他开发者使用。
  2. 在线示例:提供在线的代码示例,让开发者可以直观地看到组件的效果和使用方法。

你有更好的建议也可以添加,要注明。组件定义好后给出5个及以上的调用示例。
下面是现有目录
vueAndDeepseek/
├── src/ # 源代码目录
│ ├── assets/ # 静态资源
│ │ ├── base.css
│ │ ├── main.css
│ │ └── logo.svg
│ ├── components/ # 组件目录
│ │ ├── HelloWorld.vue
│ │ ├── TheWelcome.vue
│ │ ├── WelcomeItem.vue
│ │ ├── Progress/
│ │ │ └── Progress.vue
│ │ ├── Accordion/
│ │ ├── BackToTop/
│ │ ├── Card/
│ │ ├── InfiniteScroll/
│ │ ├── Notification/
│ │ ├── Timeline/
│ │ ├── Switch/
│ │ ├── Tabs/
│ │ ├── Sidebar/
│ │ ├── Breadcrumbs/
│ │ ├── MasonryLayout/
│ │ ├── Rating/
│ │ ├── ColorPicker/
│ │ ├── RightClickMenu/
│ │ ├── RangePicker/
│ │ ├── Navbar/
│ │ ├── FormValidation/
│ │ ├── CopyToClipboard/
│ │ ├── ClickAnimations/
│ │ ├── ThumbnailList/
│ │ ├── KeyboardShortcuts/
│ │ ├── CommentSystem/
│ │ ├── QRCode/
│ │ ├── RadioButton/
│ │ ├── Slider/
│ │ ├── ScrollAnimations/
│ │ ├── TextInput/
│ │ ├── Divider/
│ │ ├── Checkbox/
│ │ ├── TagInput/
│ │ ├── DatePicker/
│ │ └── icons/
│ ├── router/ # 路由配置
│ │ └── index.js
│ ├── stores/ # Pinia 状态管理
│ │ └── counter.js
│ ├── views/ # 页面组件
│ │ ├── ProgressView.vue
│ │ ├── TabsView.vue
│ │ ├── SwitchView.vue
│ │ ├── TimelineView.vue
│ │ ├── NotificationView.vue
│ │ ├── CardView.vue
│ │ ├── InfiniteScrollView.vue
│ │ ├── BackToTopView.vue
│ │ ├── AccordionView.vue
│ │ ├── SidebarView.vue
│ │ ├── BreadcrumbsView.vue
│ │ ├── MasonryLayoutView.vue
│ │ ├── RatingView.vue
│ │ ├── ColorPickerView.vue
│ │ ├── RightClickMenuView.vue
│ │ ├── RangePickerView.vue
│ │ ├── NavbarView.vue
│ │ ├── FormValidationView.vue
│ │ ├── CopyToClipboardView.vue
│ │ ├── ClickAnimationsView.vue
│ │ ├── ThumbnailListView.vue
│ │ ├── KeyboardShortcutsView.vue
│ │ ├── CommentSystemView.vue
│ │ ├── QRCodeView.vue
│ │ ├── RadioButtonView.vue
│ │ ├── SliderView.vue
│ │ ├── ScrollAnimationsView.vue
│ │ ├── TextInputView.vue
│ │ ├── DividerView.vue
│ │ ├── CheckboxView.vue
│ │ ├── TagInputView.vue
│ │ ├── DatePickerView.vue
│ │ └── AboutView.vue
│ ├── App.vue # 根组件
│ └── main.js # 应用入口
├── public/ # 公共资源目录
├── index.html # HTML 模板
├── package.json # 项目配置
├── vite.config.js # Vite 配置
└── node_modules/ # 依赖包目录

📚think

📘组件代码

根据你的需求,我帮你创建了 TagInput 组件。以下是详细的实现步骤和调用示例:

组件代码 components/TagInput/TagInput.vue

<template>
  <div class="tag-input" :class="size && `tag-input--${size}`">
    <!-- 标签容器(带动画) -->
    <transition-group name="tag-list" tag="div" class="tag-container">
      <div 
        v-for="(tag, index) in innerTags"
        :key="tag + index"
        class="tag-item"
        :style="tagStyle"
      >
        <!-- 可编辑标签 -->
        <span 
          v-if="editingIndex !== index"
          @dblclick="handleEditTag(index)"
        >{{ tag }}</span>
        <input
          v-else
          v-model="editingValue"
          @keydown.enter="handleEditConfirm(index)"
          @blur="handleEditConfirm(index)"
          @keydown.esc="editingIndex = -1"
          class="tag-edit-input"
        />
        <!-- 删除按钮 -->
        <span @click="removeTag(index)" class="tag-remove">&times;</span>
      </div>
    </transition-group>

    <!-- 输入框 + 自动完成 -->
    <div class="input-wrapper">
      <input
        ref="inputRef"
        v-model="inputValue"
        :placeholder="filteredPlaceholder"
        :style="inputStyle"
        @keydown="handleKeydown"
        @input="handleInput"
        @focus="$emit('focus')"
        @blur="$emit('blur')"
        class="tag-input-field"
      />
      <transition name="fade">
        <div v-if="suggestionsVisible" class="suggestions">
          <div
            v-for="(suggestion, idx) in filteredSuggestions"
            :key="idx"
            @click="selectSuggestion(suggestion)"
            class="suggestion-item"
          >{{ suggestion }}</div>
        </div>
      </transition>
    </div>
  </div>
</template>

<script setup>
import { ref, computed, watch, nextTick } from 'vue'

const props = defineProps({
  modelValue: { type: Array, default: () => [] },
  tags: { type: Array, default: () => [] },
  maxTags: Number,
  minTags: Number,
  placeholder: { type: String, default: '输入标签...' },
  separator: { type: [String, Array], default: ',' },
  allowDuplicates: Boolean,
  size: String,
  inputStyle: [Object, String],
  tagStyle: [Object, String],
  pattern: [RegExp, String],
  maxLength: Number
})

const emit = defineEmits([
  'update:modelValue',
  'add',
  'remove',
  'input',
  'blur',
  'focus'
])

// 响应式数据
const inputRef = ref(null)
const inputValue = ref('')
const innerTags = ref([...props.modelValue.length ? props.modelValue : props.tags])
const editingIndex = ref(-1)
const editingValue = ref('')
const suggestionsVisible = ref(false)

// 计算属性
const filteredPlaceholder = computed(() => {
  if (props.maxTags && innerTags.value.length >= props.maxTags) {
    return '已达到最大标签数量'
  }
  return props.placeholder
})

const filteredSuggestions = computed(() => {
  // 实际项目中应从 props 接收建议数据,这里做简单演示
  const demoData = ['Vue', 'React', 'Angular', 'Svelte', 'JavaScript']
  return demoData.filter(item => 
    item.toLowerCase().includes(inputValue.value.toLowerCase())
  )
})

// 方法
const validateTag = (tag) => {
  tag = tag.trim()
  if (!tag) return false
  if (props.maxLength && tag.length > props.maxLength) return false
  if (props.pattern) {
    const pattern = typeof props.pattern === 'string' 
      ? new RegExp(props.pattern) 
      : props.pattern
    if (!pattern.test(tag)) return false
  }
  return true
}

const addTag = (tag) => {
  tag = tag.trim()
  if (!validateTag(tag)) return
  
  if (props.maxTags && innerTags.value.length >= props.maxTags) return
  if (!props.allowDuplicates && innerTags.value.includes(tag)) return
  
  innerTags.value.push(tag)
  emit('update:modelValue', [...innerTags.value])
  emit('add', tag)
}

const removeTag = (index) => {
  if (props.minTags && innerTags.value.length <= props.minTags) return
  const removed = innerTags.value.splice(index, 1)
  emit('update:modelValue', [...innerTags.value])
  emit('remove', removed[0])
}

const handleKeydown = (e) => {
  const separators = Array.isArray(props.separator) 
    ? props.separator 
    : [props.separator]

  if (e.key === 'Enter' || separators.includes(e.key)) {
    e.preventDefault()
    processInput()
  } else if (e.key === 'Backspace' && inputValue.value === '') {
    removeTag(innerTags.value.length - 1)
  }
}

const processInput = () => {
  const separators = Array.isArray(props.separator)
    ? props.separator.join('')
    : props.separator
  const splitRegExp = new RegExp(`[${separators}]`)
  
  inputValue.value.split(splitRegExp)
    .filter(t => t.trim())
    .forEach(t => addTag(t))
  
  inputValue.value = ''
}

const handleInput = () => {
  suggestionsVisible.value = inputValue.value.length > 0
  emit('input', inputValue.value)
}

const handleEditTag = async (index) => {
  editingIndex.value = index
  editingValue.value = innerTags.value[index]
  await nextTick()
  inputRef.value.focus()
}

const handleEditConfirm = (index) => {
  if (validateTag(editingValue.value)) {
    innerTags.value.splice(index, 1, editingValue.value.trim())
    emit('update:modelValue', [...innerTags.value])
  }
  editingIndex.value = -1
}

const selectSuggestion = (suggestion) => {
  addTag(suggestion)
  inputValue.value = ''
  suggestionsVisible.value = false
}

// 监听
watch(() => props.modelValue, (newVal) => {
  innerTags.value = [...newVal]
})
</script>

<style scoped>
.tag-input {
  border: 1px solid #ddd;
  padding: 8px;
  border-radius: 4px;
}

.tag-input--small { font-size: 12px }
.tag-input--medium { font-size: 14px }
.tag-input--large { font-size: 16px }

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.tag-item {
  background: #f0f0f0;
  padding: 4px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tag-remove {
  cursor: pointer;
  padding-left: 4px;
}

.tag-remove:hover {
  color: #f00;
}

.tag-edit-input {
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
}

.input-wrapper {
  position: relative;
}

.suggestions {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
}

.suggestion-item {
  padding: 8px;
  cursor: pointer;
}

.suggestion-item:hover {
  background: #f0f0f0;
}

/* 过渡动画 */
.tag-list-enter-active,
.tag-list-leave-active {
  transition: all 0.3s ease;
}
.tag-list-enter-from,
.tag-list-leave-to {
  opacity: 0;
  transform: translateY(10px);
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.2s;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}
</style>

5个调用示例

<!-- 基本使用 -->
<TagInput v-model="tags" />

<!-- 带验证的标签 -->
<TagInput 
  v-model="tags"
  :max-tags="5"
  :min-tags="2"
  :pattern="/^[a-zA-Z]+$/"
  placeholder="输入字母..."
/>

<!-- 自定义样式 -->
<TagInput
  v-model="tags"
  size="large"
  :input-style="{ border: '2px solid #4CAF50' }"
  :tag-style="{ background: '#4CAF50', color: 'white' }"
/>

<!-- 多分隔符 -->
<TagInput
  v-model="tags"
  :separator="[',', ' ', ';']"
  :allow-duplicates="true"
/>

<!-- 带自动完成 -->
<TagInput 
  v-model="tags"
  @input="handleInput"
  :max-length="20"
/>

增强建议

  1. 键盘导航增强

    • 添加方向键在建议列表中导航
    • 添加 Tab 键选择建议
  2. 输入验证反馈

    • 添加无效输入的视觉反馈
    • 提供验证错误消息插槽
  3. 扩展自动完成

    • 添加异步搜索建议功能
    • 支持自定义建议模板
  4. 增强可访问性

    • 添加 ARIA 标签
    • 支持键盘完全操作
  5. 性能优化

    • 添加虚拟滚动支持长建议列表
    • 防抖输入处理

这些功能可以根据实际需求逐步添加。组件已经实现了核心功能,可以满足大多数使用场景。

📚代码测试

运行正常

📚测试代码正常跑通,附其他基本代码

  • 添加路由
  • 页面展示入口

📘编写路由 src\router\index.js

\router\index.js

import { createRouter, createWebHistory } from 'vue-router'
import RightClickMenuView from '../views/RightClickMenuView.vue'
import RangePickerView from '../views/RangePickerView.vue'


const router = createRouter({
  history: createWebHistory(import.meta.env.BASE_URL),
  routes: [
    {
      path: '/',
      name: 'progress',
      component:  () => import('../views/ProgressView.vue'),
    },
    {
      path: '/tabs',
      name: 'tabs',
      // route level code-splitting
      // this generates a separate chunk (About.[hash].js) for this route
      // which is lazy-loaded when the route is visited.
      // 标签页(Tabs)
      component: () => import('../views/TabsView.vue'),
    },
    {
      path: '/accordion',
      name: 'accordion',
      // 折叠面板(Accordion)
      component: () => import('../views/AccordionView.vue'),
    },
    {
      path: '/timeline',
      name: 'timeline',
      // 时间线(Timeline)
      component: () => import('../views/TimelineView.vue'),
    },
    {
      path: '/backToTop',
      name: 'backToTop',
      component: () => import('../views/BackToTopView.vue')
    },
    {
      path: '/notification',
      name: 'notification',
      component: () => import('../views/NotificationView.vue')
    },
    {
      path: '/card',
      name: 'card',
      component: () => import('../views/CardView.vue')
    },
    {
      path: '/infiniteScroll',
      name: 'infiniteScroll',
      component: () => import('../views/InfiniteScrollView.vue')
    },
    {
      path: '/switch',
      name: 'switch',
      component: () => import('../views/SwitchView.vue')
    },
    {
      path: '/sidebar',
      name: 'sidebar',
      component: () => import('../views/SidebarView.vue')
    },
    {
      path: '/breadcrumbs',
      name: 'breadcrumbs',
      component: () => import('../views/BreadcrumbsView.vue')
    },
    {
      path: '/masonryLayout',
      name: 'masonryLayout',
      component: () => import('../views/MasonryLayoutView.vue')
    },
    {
      path: '/rating',
      name: 'rating',
      component: () => import('../views/RatingView.vue')
    },
    {
      path: '/datePicker',
      name: 'datePicker',
      component: () => import('../views/DatePickerView.vue')
    },
    {
      path: '/colorPicker',
      name: 'colorPicker',
      component: () => import('../views/ColorPickerView.vue')
    },
    {
      path: '/rightClickMenu',
      name: 'rightClickMenu',
      component: RightClickMenuView
    },
    {
      path: '/rangePicker',
      name: 'rangePicker',
      component: () => import('../views/RangePickerView.vue')
    },
    {
      path: '/navbar',
      name: 'navbar',
      component: () => import('../views/NavbarView.vue')
    },
    {
      path: '/formValidation',
      name: 'formValidation',
      component: () => import('../views/FormValidationView.vue')
    },
    {
      path: '/copyToClipboard',
      name: 'copyToClipboard',
      component: () => import('../views/CopyToClipboardView.vue')
    },
    {
      path: '/clickAnimations',
      name: 'clickAnimations',
      component: () => import('../views/ClickAnimationsView.vue')
    },
    {
      path: '/thumbnailList',
      name: 'thumbnailList',
      component: () => import('../views/ThumbnailListView.vue')
    },
    {
      path: '/keyboardShortcuts',
      name: 'keyboardShortcuts',
      component: () => import('../views/KeyboardShortcutsView.vue')
    },
    {
      path: '/commentSystem',
      name: 'commentSystem',
      component: () => import('../views/CommentSystemView.vue')
    },
    {
      path: '/qRCode',
      name: 'qRCode',
      component: () => import('../views/QRCodeView.vue')
    },
    {
      path: '/radioButton',
      name: 'radioButton',
      component: () => import('../views/RadioButtonView.vue')
    },
    {
      path: '/slider',
      name: 'slider',
      component: () => import('../views/SliderView.vue')
    },
    {
      path: '/scrollAnimations',
      name: 'scrollAnimations',
      component: () => import('../views/ScrollAnimationsView.vue')
    },
    {
      path: '/textInputView',
      name: 'textInputView',
      component: () => import('../views/TextInputView.vue')
    },
    {
      path: '/divider',
      name: 'divider',
      component: () => import('../views/DividerView.vue')
    },
    {
      path: '/checkbox',
      name: 'checkbox',
      component: () => import('../views/CheckboxView.vue')
    },
    {
      path: '/tagInput',
      name: 'tagInput',
      component: () => import('../views/TagInputView.vue')
    }
  ],
})

export default router

📘编写展示入口 src\App.vue

 src\App.vue

<script setup>
import { RouterLink, RouterView } from 'vue-router'
import HelloWorld from './components/HelloWorld.vue'
</script>

<template>
  <header>
    <img alt="Vue logo" class="logo" src="@/assets/logo.svg" width="125" height="125" />

    <div class="wrapper">
      <HelloWorld msg="You did it!" />
      <nav>
        <RouterLink to="/">Progress</RouterLink>
        <RouterLink to="/tabs">Tabs</RouterLink>
        <RouterLink to="/accordion">Accordion</RouterLink>
        <RouterLink to="/timeline">Timeline</RouterLink>
        <RouterLink to="/backToTop">BackToTop</RouterLink>
        <RouterLink to="/notification">Notification</RouterLink>
        <RouterLink to="/card">Card</RouterLink>
        <RouterLink to="/infiniteScroll">InfiniteScroll</RouterLink>
        <RouterLink to="/switch">Switch</RouterLink>
        <RouterLink to="/sidebar">Sidebar</RouterLink>
        <RouterLink to="/breadcrumbs">Breadcrumbs</RouterLink>
        <RouterLink to="/masonryLayout">MasonryLayout</RouterLink>
        <RouterLink to="/rating">Rating</RouterLink>
        <RouterLink to="/datePicker">DatePicker</RouterLink>
        <RouterLink to="/colorPicker">ColorPicker</RouterLink>
        <RouterLink to="/rightClickMenu">RightClickMenu</RouterLink>
        <RouterLink to="/rangePicker">RangePicker</RouterLink>
        <RouterLink to="/navbar">Navbar</RouterLink>
        <RouterLink to="/formValidation">FormValidation</RouterLink>
        <RouterLink to="/copyToClipboard">CopyToClipboard</RouterLink>
        <RouterLink to="/clickAnimations">ClickAnimations</RouterLink>
        <RouterLink to="/thumbnailList">ThumbnailList</RouterLink>
        <RouterLink to="/keyboardShortcuts">KeyboardShortcuts</RouterLink>
        <RouterLink to="/commentSystem">CommentSystem</RouterLink>
        <RouterLink to="/qRCode">QRCode</RouterLink>
        <RouterLink to="/radioButton">RadioButton</RouterLink>
        <RouterLink to="/slider">Slider</RouterLink>
        <RouterLink to="/scrollAnimations">ScrollAnimations</RouterLink>
        <RouterLink to="/textInputView">TextInput</RouterLink>
        <RouterLink to="/divider">Divider</RouterLink>
        <RouterLink to="/checkbox">Checkbox</RouterLink>
        <RouterLink to="/tagInput">TagInput</RouterLink>
      </nav>
    </div>
  </header>

  <RouterView />
</template>

<style scoped>
header {
  line-height: 1.5;
  max-height: 100vh;
}

.logo {
  display: block;
  margin: 0 auto 2rem;
}

nav {
  width: 100%;
  font-size: 12px;
  text-align: center;
  margin-top: 2rem;
}

nav a.router-link-exact-active {
  color: var(--color-text);
}

nav a.router-link-exact-active:hover {
  background-color: transparent;
}

nav a {
  display: inline-block;
  padding: 0 1rem;
  border-left: 1px solid var(--color-border);
}

nav a:first-of-type {
  border: 0;
}

@media (min-width: 1024px) {
  header {
    display: flex;
    place-items: center;
    padding-right: calc(var(--section-gap) / 2);
  }

  .logo {
    margin: 0 2rem 0 0;
  }

  header .wrapper {
    display: flex;
    place-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    text-align: left;
    margin-left: -1rem;
    font-size: 1rem;

    padding: 1rem 0;
    margin-top: 1rem;
  }
}
</style>

📚页面效果

DeepSeek 助力 Vue3 开发:打造丝滑的标签输入(Tag Input)页面效果

📚相关文章

 

———— 相 关 文 章 ————

 

  1. DeepSeek 助力 Vue 开发:打造丝滑的右键菜单(RightClickMenu)https://blog.csdn.net/qq_33650655/article/details/145706658

  2. DeepSeek 助力 Vue 开发:打造丝滑的范围选择器(Range Picker)https://blog.csdn.net/qq_33650655/article/details/145713572

  3. DeepSeek 助力 Vue 开发:打造丝滑的导航栏(Navbar)https://blog.csdn.net/qq_33650655/article/details/145732421

  4. DeepSeek 助力 Vue 开发:打造丝滑的表单验证(Form Validation)https://blog.csdn.net/qq_33650655/article/details/145735582

  5. DeepSeek 助力 Vue 开发:打造丝滑的复制到剪贴板(Copy to Clipboard)https://blog.csdn.net/qq_33650655/article/details/145739569

  6. DeepSeek 助力 Vue 开发:打造丝滑的点击动画(Click Animations)https://blog.csdn.net/qq_33650655/article/details/145766184

  7. DeepSeek 助力 Vue 开发:打造丝滑的缩略图列表(Thumbnail List)https://blog.csdn.net/qq_33650655/article/details/145776679

  8. DeepSeek 助力 Vue 开发:打造丝滑的 键盘快捷键(Keyboard Shortcuts) https://blog.csdn.net/qq_33650655/article/details/145780227

  9. DeepSeek 助力 Vue 开发:打造丝滑的评论系统(Comment System)https://blog.csdn.net/qq_33650655/article/details/145781104

  10. DeepSeek 助力 Vue 开发:打造丝滑的二维码生成(QR Code)https://blog.csdn.net/qq_33650655/article/details/145797928

  11. DeepSeek 助力 Vue 开发:打造丝滑的单选按钮(Radio Button)https://blog.csdn.net/qq_33650655/article/details/145810620

  12. DeepSeek 助力 Vue 开发:打造丝滑的滑块(Slider)https://blog.csdn.net/qq_33650655/article/details/145817161

  13. DeepSeek 助力 Vue 开发:打造丝滑的滚动动画(Scroll Animations)https://blog.csdn.net/qq_33650655/article/details/145818571

  14. DeepSeek 助力 Vue 开发:打造丝滑的文本输入框(Text Input)https://blog.csdn.net/qq_33650655/article/details/145837003

  15. DeepSeek 助力 Vue 开发:打造丝滑的分割线(Divider)https://blog.csdn.net/qq_33650655/article/details/145849100

  16. DeepSeek 助力 Vue 开发:打造丝滑的 复选框(Checkbox)https://blog.csdn.net/qq_33650655/article/details/145855695

到此这篇文章就介绍到这了,更多精彩内容请关注本人以前的文章或继续浏览下面的文章,创作不易,如果能帮助到大家,希望大家多多支持宝码香车~💕,若转载本文,一定注明本文链接。


整理不易,点赞关注宝码香车

更多专栏订阅推荐:
👍 html+css+js 绚丽效果
💕 vue
✈️ Electron
⭐️ js
📝 字符串
✍️ 时间对象(Date())操作

;