label
Basic label.
Basic label.
Загрузка превью…
src/label/c-label-1.vue
<script setup lang="ts">
import { Field } from "@/components/ui/field"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
</script>
<template>
<Field class="w-full max-w-xs">
<Label for="label-demo-username">Username</Label>
<Input id="label-demo-username" placeholder="Enter your username…" />
</Field>
</template>