Verte is a Color Picker component. Designed from below to work with Vue.js.
Features
- Multiple Color Models support RGB, HSL, and HEX.
- SSR Friendly.
- Small file size, only 7kb gzipped.
- Two-way binding support.
How to make use of it:
The first step is to install it using yarn or npm:
npm install verte --save # or use yarn yarn add verte
Basic usage
<template> <verte picker="square" model="rgb"></verte> </template> <script> import Verte from 'verte'; import 'verte/dist/verte.css'; // register component globally Vue.component(Verte.name, Verte); new Vue ({ el: '#app', // OR register locally components: { Verte } }); </script>
See Demo And Download
Official Website(baianat): Click Here
This superior jQuery/javascript plugin is developed by baianat. For extra advanced usage, please go to the official website.