diff --git a/apps/www/src/lib/registry/default/ui/input/Input.vue b/apps/www/src/lib/registry/default/ui/input/Input.vue index 0e39fae8..fdaa54eb 100644 --- a/apps/www/src/lib/registry/default/ui/input/Input.vue +++ b/apps/www/src/lib/registry/default/ui/input/Input.vue @@ -3,10 +3,6 @@ import type { HTMLAttributes } from 'vue' import { useVModel } from '@vueuse/core' import { cn } from '@/lib/utils' -defineOptions({ - inheritAttrs: false, -}) - const props = defineProps<{ defaultValue?: string | number modelValue?: string | number @@ -24,5 +20,5 @@ const modelValue = useVModel(props, 'modelValue', emits, { diff --git a/apps/www/src/lib/registry/new-york/ui/input/Input.vue b/apps/www/src/lib/registry/new-york/ui/input/Input.vue index c8cc9358..a0e7654e 100644 --- a/apps/www/src/lib/registry/new-york/ui/input/Input.vue +++ b/apps/www/src/lib/registry/new-york/ui/input/Input.vue @@ -3,10 +3,6 @@ import type { HTMLAttributes } from 'vue' import { useVModel } from '@vueuse/core' import { cn } from '@/lib/utils' -defineOptions({ - inheritAttrs: false, -}) - const props = defineProps<{ defaultValue?: string | number modelValue?: string | number @@ -24,5 +20,5 @@ const modelValue = useVModel(props, 'modelValue', emits, {