35 lines
880 B
Vue
35 lines
880 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
interface Props {
|
|
class?: HTMLAttributes['class']
|
|
modelValue?: string
|
|
disabled?: boolean
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
disabled: false,
|
|
})
|
|
|
|
const emit = defineEmits<{
|
|
'update:modelValue': [value: string]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<select
|
|
:value="modelValue"
|
|
:disabled="disabled"
|
|
:class="
|
|
cn(
|
|
'flex h-9 w-full rounded-md border border-input bg-background px-3 py-1 text-sm shadow-sm transition-colors placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50',
|
|
props.class,
|
|
)
|
|
"
|
|
@change="emit('update:modelValue', ($event.target as HTMLSelectElement).value)"
|
|
>
|
|
<slot />
|
|
</select>
|
|
</template>
|