@tony-nz/vueform-plugin-color-picker
v1.0.0
Published
Unofficial color picker plugin for Vueform.
Downloads
57
Readme
Unofficial Color Picker plugin for Vueform
Plugin for Vueform to add a color picker functionality to text elements.
Prerequisites
Installation
- Install the plugin
npm install @vueform/plugin-color-picker
- Add the plugin in vueform.config.js
// vueform.config.js
import ColorPickerPlugin from "@vueform/vueform-plugin-color-picker";
export default {
// ...
plugins: [ColorPickerPlugin],
};
Usage
Basic Color Picker
<TextElement name="colorPickerHex" colorFormat="hex" />
``` ### RGB Color Picker ```vue
<TextElement name="colorPickerHex" colorFormat="rgb" />
``` ### HSL Color Picker ```vue
<TextElement name="colorPickerHex" colorFormat="hsl" />
``` ## License [MIT](https://opensource.org/licenses/MIT)