refactor: modified components to suit the changes in the table component

This commit is contained in:
Joel Jacob Stephen
2023-07-21 22:48:10 +05:30
parent 27eb7690ba
commit 6e7db67c9b
4 changed files with 22 additions and 27 deletions

View File

@@ -63,7 +63,5 @@ const emit = defineEmits<{
(event: "onRowClicked", item: Item): void
}>()
const onRowClicked = (item: Item) => {
emit("onRowClicked", item)
}
const onRowClicked = (item: Item) => emit("onRowClicked", item)
</script>