Files
ui/docs/content/3.components/color-picker.md
Sébastien Chopin 0a8f49275e docs(components): add page (#3365)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
2025-02-21 12:15:42 +01:00

2.2 KiB

title, description, category, links
title description category links
ColorPicker A component to select a color. form
label icon to
GitHub i-simple-icons-github https://github.com/nuxt/ui/tree/v3/src/runtime/components/ColorPicker.vue

Usage

Use the v-model directive to control the value of the ColorPicker.

::component-code

ignore:

  • modelValue external:
  • modelValue props: modelValue: '#00C16A'

::

Use the default-value prop to set the initial value when you do not need to control its state.

::component-code

ignore:

  • defaultValue props: defaultValue: '#00BCD4'

::

RGB Format

Use the format prop to set rgb value of the ColorPicker.

::component-code

ignore:

  • modelValue
  • format external:
  • modelValue props: format: rgb modelValue: 'rgb(0, 193, 106)'

::

HSL Format

Use the format prop to set hsl value of the ColorPicker.

::component-code

ignore:

  • modelValue
  • format external:
  • modelValue props: format: hsl modelValue: 'hsl(153, 100%, 37.8%)'

::

CMYK Format

Use the format prop to set cmyk value of the ColorPicker.

::component-code

ignore:

  • modelValue
  • format external:
  • modelValue props: format: cmyk modelValue: 'cmyk(100%, 0%, 45.08%, 24.31%)'

::

CIELab Format

Use the format prop to set lab value of the ColorPicker.

::component-code

ignore:

  • modelValue
  • format external:
  • modelValue props: format: lab modelValue: 'lab(68.88% -60.41% 32.55%)'

::

Throttle

Use the throttle prop to set the throttle value of the ColorPicker.

::component-code

ignore:

  • modelValue external:
  • modelValue props: throttle: 100 modelValue: '#00C16A'

::

Size

Use the size prop to set the size of the ColorPicker.

::component-code

props: size: xl

::

Disabled

Use the disabled prop to disable the ColorPicker.

::component-code

props: disabled: true

::

Examples

As a Color chooser

Use a Button and a Popover component to create a color chooser.

::component-example

name: 'color-picker-chooser-example'

::

API

Props

:component-props

Emits

:component-emits

Theme

:component-theme