input
Input with horizontal orientation
Input with horizontal orientation
Загрузка превью…
src/input/c-input-20.vue
<script setup lang="ts">
import { Field, FieldLabel } from "@/components/ui/field"
import { Input } from "@/components/ui/input"
</script>
<template>
<Field orientation="horizontal" class="w-full max-w-xs">
<FieldLabel for="horizontal-name" class="w-24">Name</FieldLabel>
<Input id="horizontal-name" placeholder="John Doe" />
</Field>
</template>