vue-knob-control icon indicating copy to clipboard operation
vue-knob-control copied to clipboard

A rotary knob control for Vue.js

Results 2 vue-knob-control issues
Sort by recently updated
recently updated
newest added

I am a newer, have not find the way to use it in Vue3. I import it as a component, and get a error " Cannot read properties of undefined...

``` import Vue from 'vue' import KnobControl from 'vue-knob-control' Vue.use(KnobControl) Vue.component('knob-control', KnobControl) export default { data() { return { value: 10, } } } ```