chore: prefer arrow function shorthand
This commit is contained in:
@@ -69,9 +69,7 @@ export default createComponent({
|
||||
|
||||
watch(
|
||||
() => props.modelValue,
|
||||
(value) => {
|
||||
emit('change', value);
|
||||
}
|
||||
(value) => emit('change', value)
|
||||
);
|
||||
|
||||
useExpose({ toggleAll });
|
||||
|
||||
Reference in New Issue
Block a user