aesoper101 / vue3-colorpicker

A very beautiful color picker
https://aesoper101.github.io/vue3-colorpicker/
Other
258 stars 43 forks source link

thank you ✅ #9

Open productdevbook opened 2 years ago

productdevbook commented 2 years ago

a great library.

Mobile full screen etc. t77_1_color_picker_first

riyaz7us commented 5 months ago

Currently, I'm using it in Nuxt 3 as is:

npm i vue3-colorpicker
<template>
<ColorPicker shape="circle" format="hex8" :pureColor="color" @update:pureColor="setColor($event)" />
</template>

<script setup>
import { ColorPicker } from "vue3-colorpicker";
const color = ref("#ffffff");

function setColor(e){
  color.value=e;
}

</script>