input
Input with time type
Input with time type
Загрузка превью…
src/input/c-input-14.vue
<script setup lang="ts">
import { Field, FieldLabel } from "@/components/ui/field"
import { Input } from "@/components/ui/input"
</script>
<template>
<Field class="max-w-xs">
<FieldLabel for="input-demo-time">Time</FieldLabel>
<Input id="input-demo-time" type="time" />
</Field>
</template>