mirror of
https://github.com/keven1024/015.git
synced 2026-05-26 07:08:02 +00:00
52 lines
1.9 KiB
Vue
52 lines
1.9 KiB
Vue
<script setup lang="ts">
|
|
import { Label } from '@/components/ui/label'
|
|
import type { RuleExpression } from 'vee-validate'
|
|
const props = defineProps<{
|
|
name: string
|
|
label?: string
|
|
rules?: RuleExpression<string[]>
|
|
}>()
|
|
const { value, setValue, errorMessage } = useField<string[]>(props.name, props?.rules)
|
|
const addInput = ref('')
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col gap-2">
|
|
<Label v-if="label">{{ label }}</Label>
|
|
<div v-for="(item, index) in value" :key="`${index}-${item}`" class="flex flex-row gap-2 items-center">
|
|
<Input
|
|
:model-value="item"
|
|
@update:model-value="(v: string | number) => setValue(value.map((o, i) => (i === index ? String(v) : o)))"
|
|
:aria-invalid="!!errorMessage || undefined"
|
|
v-bind="$attrs"
|
|
/>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
class="bg-red-500/10 text-red-500 hover:bg-red-500 hover:text-white"
|
|
@click="setValue(value.filter((_, i) => i !== index))"
|
|
>
|
|
<LucideTrash class="size-4" />
|
|
</Button>
|
|
</div>
|
|
<div class="flex flex-row gap-2 items-center">
|
|
<Input v-model="addInput" :aria-invalid="!!errorMessage || undefined" v-bind="$attrs" />
|
|
<Button
|
|
size="icon"
|
|
@click="
|
|
() => {
|
|
const nextValue = addInput.trim()
|
|
if (!nextValue) {
|
|
return
|
|
}
|
|
setValue([...(value || []), nextValue])
|
|
addInput = ''
|
|
}
|
|
"
|
|
><LucidePlus class="size-4"
|
|
/></Button>
|
|
</div>
|
|
<p v-if="errorMessage" class="text-sm text-destructive">{{ errorMessage }}</p>
|
|
</div>
|
|
</template>
|