Xavier Ottolini
Xavier Ottolini
I have got the same issue.
I use VueJS 3 Main.vue ``` import { Ref } from 'vue' import MySelect from './MySelect.vue' const selectOptions = [ { value: 'Value 1', label: 'Option 1' }, { value:...
```javascript const setValue = (value: any) => { if (value === selectValue.value) { return; } selectInstance.value.setValue(value); }; ``` Yes, I confirm that it is necessary to check that the value...
I try to drag'n drop an item from the origin spot to the target spot. The dragging items does not follow the digit. More over, sometimes, it does not move...
> Hello 👋, you can use `const route = useRouter().currentRoute.value;` to get reactive route object. This is not the usual way to get the current route in Vue. `useRoute` to...