mirror of
https://github.com/nuxt/ui.git
synced 2026-09-14 19:51:10 +08:00
936253feae
Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com> Co-authored-by: Benjamin Canac <canacb1@gmail.com>
12 lines
263 B
Vue
12 lines
263 B
Vue
<script setup lang="ts">
|
|
import { Time } from '@internationalized/date'
|
|
|
|
const time = shallowRef(new Time(12, 30, 0))
|
|
</script>
|
|
|
|
<template>
|
|
<UFormField label="Time" help="Specify the time" required>
|
|
<UInputTime v-model="time" />
|
|
</UFormField>
|
|
</template>
|