ckpack / vue-color

(vue3.0) 🎨 Vue Color Pickers UI Library for Sketch, Photoshop, Chrome & more
https://ckpack.github.io/vue-color/
MIT License
180 stars 13 forks source link

It crushes,when I import it on demand. #18

Closed HHN0609 closed 2 years ago

HHN0609 commented 2 years ago

My code looks like below:

<Sketch color="#FFFFFF"></Sketch>
import { Sketch } from '@ckpack/vue-color';
ckvv commented 2 years ago

You need to use modelValue or v-model

    <Sketch v-model="color"/>
    <Sketch modelValue="#FFFFFF"/>
HHN0609 commented 2 years ago

You need to use modelValue or v-model

    <Sketch v-model="color"/>
    <Sketch modelValue="#FFFFFF"/>

Thanks! I think it will be better if this component can combine with <input/> tag.