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>

Установка

npx shadcn-vue@latest add https://revueui.rootapi.dev/r/c-input-28.json

Зависимости реестра

Источник: порт из ReUI (Keenthemes, MIT)