0.0.5 • Published 11 months ago

@mergehez/vue-color-picker v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

NPM Version

Lightweight Vue Color Picker Component

Since all color pickers I found were too large or too complex, I decided to create my own.

The bundle size of the component is 9.6 KB (minified) and 3.9 KB (gzipped).

live demo

Installation

npm install @mergehez/vue-color-picker
bun install @mergehez/vue-color-picker
pnpm install @mergehez/vue-color-picker

Usage

<script setup>
  import ColorPicker from '@mergehez/vue-color-picker';
  import '@mergehez/vue-color-picker/styles.css';

  const color = ref('#ff0000');
</script>
<template>
  <div>
    <ColorPicker v-model="color" />
  </div>
</template>

!NOTE Go to ColorPicker.vue for available props.

0.0.5

11 months ago

0.0.4

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago