verte

0.0.12 • Public • Published

verte

Build Status Codecov Codacy Badge Average time to resolve an issue Percentage of issues still open npm npm

Verte

A Complete Vue.js Color Picker Component

Features

  • Multiple Color Models support: RGB, HSL, and HEX.
  • SSR Friendly.
  • Small file size, only 7kb gzipped.
  • Two way binding support.

Getting Started

Installation

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> 
 

License

MIT

Dependencies (1)

Dev Dependencies (40)

Package Sidebar

Install

npm i verte

Weekly Downloads

6,307

Version

0.0.12

License

MIT

Unpacked Size

199 kB

Total Files

7

Last publish

Collaborators

  • baianaters
  • logaretm