All Projects → baianat → Verte

baianat / Verte

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

Projects that are alternatives of or similar to Verte

Vue Swatches
🎨 Help the user picking beautiful colors!
Stars: ✭ 456 (+289.74%)
Mutual labels:  component, color-picker
Rebirth Ng
rebirth-ng is a ui framework for Angular & bootstrap.
Stars: ✭ 118 (+0.85%)
Mutual labels:  component
Error Handler
The ErrorHandler component provides tools to manage errors and ease debugging PHP code.
Stars: ✭ 1,852 (+1482.91%)
Mutual labels:  component
Vcomponents
VComponents is a SwiftUI framework that contains 40+ customizable UI components
Stars: ✭ 117 (+0%)
Mutual labels:  component
Styled Typography
Typograpy components for react and styled-components
Stars: ✭ 113 (-3.42%)
Mutual labels:  component
Zoid
Cross domain components
Stars: ✭ 1,672 (+1329.06%)
Mutual labels:  component
Alert
⚠️ Alert is a simple notification that appears on the top of the screen.
Stars: ✭ 113 (-3.42%)
Mutual labels:  component
Polyfill Iconv
This component provides a native PHP implementation of the php.net/iconv functions.
Stars: ✭ 1,621 (+1285.47%)
Mutual labels:  component
React Timer Hook
React timer hook
Stars: ✭ 118 (+0.85%)
Mutual labels:  component
Vue Api Request
Control your API calls by using an amazing component which supports axios and vue-resource
Stars: ✭ 116 (-0.85%)
Mutual labels:  component
React Magnifier
🔍 React image zoom component
Stars: ✭ 116 (-0.85%)
Mutual labels:  component
Mayre
Maybe render a React component, maybe not 😮
Stars: ✭ 114 (-2.56%)
Mutual labels:  component
React Spring Slider
A slider component for react
Stars: ✭ 118 (+0.85%)
Mutual labels:  component
Router
🍭灵活的组件化路由框架.
Stars: ✭ 1,502 (+1183.76%)
Mutual labels:  component
Calendar
📆 calendar 日历
Stars: ✭ 119 (+1.71%)
Mutual labels:  component
Vue Pdf
vue.js pdf viewer
Stars: ✭ 1,700 (+1352.99%)
Mutual labels:  component
Aura.ui
A Library with a lot of Controls for AvaloniaUI
Stars: ✭ 114 (-2.56%)
Mutual labels:  component
Vue Range Slider
Simple slider component of Vue.js
Stars: ✭ 117 (+0%)
Mutual labels:  component
Vue Calendar Heatmap
A lightweight calendar heatmap Vuejs component built on SVG, inspired by github's contribution calendar graph
Stars: ✭ 120 (+2.56%)
Mutual labels:  component
Vue Datatables Net
Vue jQuery DataTables.net wrapper component
Stars: ✭ 119 (+1.71%)
Mutual labels:  component

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].