fix: apply ESLint rule vue/custom-event-name-casing

This commit is contained in:
iamsivin
2024-07-25 23:40:54 +05:30
parent 2ef9274450
commit ecb0b4a4f4
144 changed files with 509 additions and 515 deletions
@@ -38,13 +38,13 @@ const props = defineProps({
},
});
const emits = defineEmits(['on-search']);
const emits = defineEmits(['onSearch']);
const searchTerm = ref('');
const onSearch = debounce(value => {
searchTerm.value = value;
emits('on-search', value);
emits('onSearch', value);
}, 300);
const filteredListItems = computed(() => {