Getting Started
Click the logo above to change its color.
Installation
yarn or npm
First step is to install it using yarn
or npm
:
bash
yarn add verte-vue3
# or use npm
npm install verte-vue3 --save
CDN
You can also use a CDN:
Basic usage
vue
<template>
<Verte picker="square" model="rgb" />
</template>
<script setup>
import Verte from 'verte-vue3';
import 'verte-vue3/dist/verte.css';
</script>