Description:
A collection of color picker components for Vue.js 2, inspired from Sketch, Photoshop, Chrome & more.
Preview:
Changelog:
v2.8.1 (12/24/2020)
- Fix in some edge cases cannot read property ‘clientWidth’ of undefined
v2.8.0 (12/14/2020)
- Add new Twitter color picker
v2.7.1 (03/06/2020)
- Bugs fixed
Download Details:
Author: xiaokaike
Live Demo: http://xiaokaike.github.io/vue-color/
Download Link: https://github.com/xiaokaike/vue-color/archive/master.zip
Official Website: https://github.com/xiaokaike/vue-color
Install & Download:
// NPM
$ npm install vue-color
// CommonJS
var Photoshop = require('vue-color/src/Photoshop.vue');
new Vue({
components: {
'Photoshop': Photoshop
}
})
// ES6
import { Photoshop } from 'vue-color'
new Vue({
components: {
'photoshop-picker': Photoshop
}
})