Skip to content

颜色选择器

颜色选择

按需引入

vue
<script setup>
import ColorPicker from 'lib-agile/es/components/colorPicker/index.vue.js'
import 'lib-agile/es/components/colorPicker/index.css'
</script>

基本使用

查看代码
vue
<template>
  <colorPicker />
</template>

api

props

参数说明类型默认值
color当前选中颜色string#000000
theme主题 light 或 darkstringlight
quickColorsDefault快捷颜色默认列表Array['#000000']

事件

事件名称说明回调参数
change颜色变动后触发function(colorValue)
selectQuickColor选择快捷颜色后触发function(color)