Closed Konfuze closed 3 years ago
Vue example is broken:
Update the index.vue to make it work: <hex-color-picker :color="color.value" @color-changed="this.handleColorChanged"></hex-color-picker> to <hex-color-picker :color="color.value" @color-changed="handleColorChanged"></hex-color-picker>
<hex-color-picker :color="color.value" @color-changed="this.handleColorChanged"></hex-color-picker>
<hex-color-picker :color="color.value" @color-changed="handleColorChanged"></hex-color-picker>
Thanks for the issue and suggested fix, and sorry about not answering earlier. Updated the example so now it works.
Vue example is broken:
Update the index.vue to make it work:
<hex-color-picker :color="color.value" @color-changed="this.handleColorChanged"></hex-color-picker>
to<hex-color-picker :color="color.value" @color-changed="handleColorChanged"></hex-color-picker>