input
Color input
Color input
Загрузка превью…
src/input/c-input-28.vue
<script setup lang="ts">
import { Field, FieldLabel } from "@/components/ui/field"
import { Input } from "@/components/ui/input"
</script>
<template>
<Field class="w-full max-w-xs">
<FieldLabel for="color-picker">Theme Color</FieldLabel>
<Input
id="color-picker"
type="color"
class="h-10 w-20 cursor-pointer p-1"
value="#3b82f6"
/>
</Field>
</template>