input
Input with number type
Input with number type
Загрузка превью…
src/input/c-input-10.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-number">Number</FieldLabel>
<Input id="input-demo-number" type="number" placeholder="123" />
</Field>
</template>