Skip to content
/ verte Public
forked from baianat/verte

🎨 A Color picker component. Built from the bottom to work with Vue.js and also comes in a vanilla version.

License

Notifications You must be signed in to change notification settings

janikga/verte

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

verte

Build Status Codecov Codacy Badge

Verte

A Complete Vue.js Color Picker Component

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="wheel" :model="rgb"></verte>
</template>

<script>
  import Verte from './dist/verte.js';
  // register component globally
  Vue.component(Verte.name, Verte);

  new Vue ({
    el: '#app',
    // OR register locally
    components: { Verte }
  });
</script>

License

MIT

About

🎨 A Color picker component. Built from the bottom to work with Vue.js and also comes in a vanilla version.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Vue 81.1%
  • JavaScript 15.8%
  • Shell 2.5%
  • CSS 0.6%