1.0.0 • Published 5 months ago

@tony-nz/vueform-plugin-color-picker v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

Unofficial Color Picker plugin for Vueform

Plugin for Vueform to add a color picker functionality to text elements.

Prerequisites

Installation

  1. Install the plugin
npm install @vueform/plugin-color-picker
  1. 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 ```js
<TextElement name="colorPickerHex" colorFormat="rgb" />
``` ### HSL Color Picker ```js
<TextElement name="colorPickerHex" colorFormat="hsl" />
``` ## License [MIT](https://opensource.org/licenses/MIT)
1.0.0

5 months ago