i use the plugin with vue3
watch(
() => props.visible,
(newVal, oldVal) => {
// code
},
{ deep: true },
);
Repair results
watch(
() => props.visible // error: missing comma
() => {
// code
},
{ deep: true },
);
The quotation mark disappears after the first parameter of the function call
i use the plugin with vue3
Repair results
The quotation mark disappears after the first parameter of the function call