All Projects β†’ saintplay β†’ Vue Swatches

saintplay / Vue Swatches

Licence: mit
🎨 Help the user picking beautiful colors!

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Vue Swatches

Flexcolorpicker
Modern color picker library written in Swift 5 that can be easily extended and customized. It aims to provide great UX and performance with stable, quality code.
Stars: ✭ 164 (-64.04%)
Mutual labels:  ui-components, color-picker, color-palette
Colorpicker
jQuery UI widget for color picking (similar to the one in Microsoft Office 2010).
Stars: ✭ 271 (-40.57%)
Mutual labels:  ui-components, color-picker, color-palette
Vuesax
New Framework Components for Vue.js 2
Stars: ✭ 5,293 (+1060.75%)
Mutual labels:  component, vue-components, vuejs2
Nextcloud Vue
🍱 Vue.js components for Nextcloud app development ✌
Stars: ✭ 89 (-80.48%)
Mutual labels:  vue-components, vuejs-components, vuejs2
Vue Form Json Schema
Create forms using JSON schema. Bring your components!
Stars: ✭ 253 (-44.52%)
Mutual labels:  component, vue-components, vuejs2
Vue Multi Select
This component gives you a multi/single select with the power of Vuejs components.
Stars: ✭ 92 (-79.82%)
Mutual labels:  vue-components, vuejs-components, vuejs2
Vue Flip
A Vue.js component to flip elements.
Stars: ✭ 37 (-91.89%)
Mutual labels:  component, vue-components, vuejs2
Vue Share Buttons
πŸ”—A set of social buttons for Vue.js
Stars: ✭ 34 (-92.54%)
Mutual labels:  component, vue-components, vuejs2
V Bar
The virtual responsive crossbrowser scrollbar component for VueJS 2x
Stars: ✭ 216 (-52.63%)
Mutual labels:  component, vue-components, vuejs2
Vue Info Card
Simple and beautiful card component with an elegant spark line, for VueJS.
Stars: ✭ 159 (-65.13%)
Mutual labels:  component, vue-components, vuejs2
Vue Social Sharing
A renderless Vue.js component for sharing links to social networks, compatible with SSR
Stars: ✭ 1,071 (+134.87%)
Mutual labels:  vue-components, vuejs-components, vuejs2
vue-notification-bell
Vue.js notification bell component.
Stars: ✭ 64 (-85.96%)
Mutual labels:  vuejs2, vue-components, vuejs-components
Vuelayers
Web map Vue components with the power of OpenLayers
Stars: ✭ 532 (+16.67%)
Mutual labels:  vue-components, vuejs-components, vuejs2
Storefront Ui
Customization-first, performance-oriented and elegant UI framework for eCommerce (and not only) based on Vue.js and Google Retail UX Playbook. Made with πŸ’š by Vue Storefront team and contributors.
Stars: ✭ 1,827 (+300.66%)
Mutual labels:  ui-components, vue-components, vuejs2
Xmui
基于vue2οΌŒδΈΊε…¬εΈδΊ§ε“ζ‰“(zao)ι€ (lun)ηš„(zi)可倍用UIη»„δ»ΆοΌŒζ–‡ζ‘£:
Stars: ✭ 94 (-79.39%)
Mutual labels:  component, ui-components, vuejs2
aframe-colorwheel-component
A-Frame Colorwheel. Based on A-Painter and A-Frame Material πŸŽ¨πŸ…°
Stars: ✭ 16 (-96.49%)
Mutual labels:  color-picker, color-palette, ui-components
Formvuelar
Vue form components with server-side validation in mind
Stars: ✭ 263 (-42.32%)
Mutual labels:  vue-components, color-picker, vuejs2
Vue Touch Ripple
πŸ‘† Touch ripple component for @vuejs
Stars: ✭ 443 (-2.85%)
Mutual labels:  vue-components, vuejs2
Ly Tab
A better mobile touch-swappable reusable component for Vue 2.0
Stars: ✭ 281 (-38.38%)
Mutual labels:  ui-components, vue-components
Chromacolorpicker
🎨 An intuitive iOS color picker built in Swift.
Stars: ✭ 434 (-4.82%)
Mutual labels:  color-picker, color-palette


Vue Swatches

Travis CI npm version Coverage Status license Jest

Notice

Vue Swatches recently reached version 2. If you were using v1 please consider reading the release notes or you can check v1 here

Demo And Documentation

https://saintplay.github.io/vue-swatches/

Table of Contents

Introduction

Vue Swatches is a UI Component for Vue that allows the user to choose colors.

Unlike classic color pickers, where all colors are available (167 77 216 colors), Vue Swatches only shows a bunch of predefined colors.

More decisions require more effort

With fewer options, the user experience will be improved

Features

Install

npm install --save vue-swatches

or

yarn add vue-swatches

Basic Usage

<!-- Vue component -->
<template>
  <div>
    <v-swatches v-model="color"></v-swatches>
  </div>
</template>

<script>
  import VSwatches from 'vue-swatches'

  // Import the styles too, globally
  import "vue-swatches/dist/vue-swatches.css"

  export default {
    components: { VSwatches }, // window['vue-swatches'] - from CDN
    data () {
      return {
        color: '#1CA085'
      }
    }
  }
</script>

Contributing

# serve with hot reload at localhost:8080
yarn serve

# distribution build with minification
yarn build

# build the documentation into docs
npm docs:dev

# run unit tests
yarn test:unit

Browser Compatibility

This component has the same support than Vue itself

Vue does not support IE8 and below, because it uses ECMAScript 5 features that are un-shimmable in IE8. However it supports all ECMAScript 5 compliant browsers.

However if you want to use this with IE9, you will probably need to work on the CSS styles. IE10 should be fine

Awesome Contributors

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].