Input
Displays a form input field or a component that looks like an input field.
Preview
<script setup lang="ts">
import { Input } from "~/components/ui/input";
</script>
<template>
<Input type="email" placeholder="Email" class="w-64" />
</template>
Installation
Copy and paste this into your project
// ~/components/ui/input.tsx
import { cn, ExtendProps } from "~/lib/utils";
import { defineComponent, InputHTMLAttributes } from "vue";
type InputProps = ExtendProps<
InputHTMLAttributes & {
modelValue?: string;
}
>;
const Input = defineComponent({
props: {
modelValue: {
type: String,
},
} as unknown as InputProps,
emits: {
"update:modelValue": (value: string) => true,
},
setup(props, { emit, attrs }) {
return () => (
<input
{...attrs}
value={props.modelValue || attrs.value}
onInput={(e) =>
emit("update:modelValue", (e.target as HTMLInputElement)?.value)
}
class={cn(
"flex h-10 w-full shadow rounded-md border border-input bg-background px-3 py-2 ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
attrs.class ?? ""
)}
/>
);
},
});
export { Input };
Usage
import { Input } from "~/components/ui/input";
<Input type="email" placeholder="Enter your email" />
Examples
Default
<script setup lang="ts">
import { Input } from "~/components/ui/input";
</script>
<template>
<Input placeholder="Name" class="w-64" />
</template>
File
<script setup lang="ts">
import { Input } from "~/components/ui/input";
</script>
<template>
<Input type="file" class="w-64" />
</template>