Files
vue-ts-example/src/shadcn/components/ui/input/Input.vue
严浩 95a3676fba build(deps): 降级 @types/node 和 @vue/tsconfig 版本
- 将 @types/node 版本从 ^24.3.0 降级到 ^22.17.2
- 将 @vue/tsconfig 版本从 ^0.8.0 降级到 ^0.7.0
2025-08-18 11:41:38 +08:00

25 lines
932 B
Vue

<script setup lang="ts">
import type { HTMLAttributes } from 'vue'
import { cn } from '@/shadcn/lib/utils'
import { useVModel } from '@vueuse/core'
const props = defineProps<{
defaultValue?: string | number | undefined
modelValue?: string | number | undefined
class?: HTMLAttributes['class']
}>()
const emits = defineEmits<{
(e: 'update:modelValue', payload: string | number): void
}>()
const modelValue = useVModel(props, 'modelValue', emits, {
passive: true,
defaultValue: props.defaultValue,
})
</script>
<template>
<input v-model="modelValue" :class="cn('flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium 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)">
</template>