Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 565 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 565 Bytes

vue3-colorful WIP

A tiny Vue component for picking colors

Inspired by react-colorful

Todolist

  • v-model (hex, rgb, hsv, hsl, cmyk)
  • Add support for color string input
  • Typed
  • Better style
  • vitest
  • docs

Getting Started

npm install vue3-colorful
<script setup>
import ColorPicker from 'vue3-colorful'
import 'vue3-colorful/dist/style.css'

const color = ref('')
</script>

<template>
<ColorPicker v-model="color" />
</template>

License

MIT