deshack / verte

🎨 A Color picker component. Built from the bottom to work with Vue.js.

Home Page:https://baianat.github.io/verte/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

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

About

🎨 A Color picker component. Built from the bottom to work with Vue.js.

https://baianat.github.io/verte/

License:MIT License


Languages

Language:Vue 80.8%Language:JavaScript 16.6%Language:Shell 2.1%Language:CSS 0.5%