A very beautiful color picker, supports input and output of multiple color formats, and supports gradient color selection.
A very beautiful color picker, supports input and output of multiple color formats, and supports gradient color selection.
Note: This document is for Vue3ColorPicker v2. If you are looking for an older versions, refer to the v1 branches.The v2 version is a destructive update, and some functions in v1 are no longer supported. Please use it with caution
```
yarn add vue3-colorpicker
OR
``
npm install vue3-colorpicker
`
import Vue3ColorPicker from "vue3-colorpicker";
import "vue3-colorpicker/style.css";
createApp(App)
.use(router)
.use(Vue3ColorPicker)
.mount("#app");
`
OR
`vue3
import { ColorPicker } from "vue3-colorpicker";
import "vue3-colorpicker/style.css";
export default defineComponent({
components: { ColorPicker },
});
`
`vue3
``