This is a Vue 3 fork of the original Verte.
A Complete Vue.js Color Picker Component
- Multiple Color Models support: RGB, HSL, and HEX.
- SSR Friendly.
- Small file size, only 7kb gzipped.
- Two way binding support.
First step is to install it using yarn
or npm
:
npm install verte-vue3 --save
# or use yarn
yarn add verte-vue3
<template>
<Verte picker="square" model="rgb" />
</template>
<script setup>
import Verte from 'verte-vue3';
import 'verte-vue3/dist/verte.css';
</script>
MIT