houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!-- 标签选项 -->
<template>
  <div class="flex flex-wrap gap-[8px]">
    <span
      v-for="tag in props.tags"
      :key="tag.value"
      class="tag mb-2 border-[2px] border-solid border-[#DDDFE3] px-2 leading-6 text-[12px] bg-[#DDDFE3] rounded-[4px] cursor-pointer"
      :class="modelValue === tag.value && '!border-[#846af7] text-[#846af7]'"
      @click="emits('update:modelValue', tag.value)"
    >
      {{ tag.label }}
    </span>
  </div>
</template>
 
<script setup lang="ts">
const props = withDefaults(
  defineProps<{
    tags: { label: string; value: string }[]
    modelValue: string
    [k: string]: any
  }>(),
  {
    tags: () => []
  }
)
 
const emits = defineEmits<{
  (e: 'update:modelValue', value: string): void
}>()
</script>
<style scoped></style>