Alex Handlovits

Results 4 comments of Alex Handlovits

`` seems impossible to use with codesandbox. I hope this gets more attention as its becoming a more and more popular way to write components with Vue 3

Solved using Composition API by _not_ having `ffmpeg` be reactive Changed this line in my code: ```js const ffmpeg = ref(new FFmpeg()) ``` to: ```js const ffmpeg = new FFmpeg()...

Stumbled on this issue today and made a workaround with CSS: ```css .multiselect__option--disabled { cursor: pointer; /* optional */ pointer-events: auto; } ``` https://jsfiddle.net/xvbq91po/2/