fix: typs QTableProps

This commit is contained in:
somnetsak123 2023-12-08 22:37:04 +07:00
parent 97fb89281c
commit 84f702e537

View file

@ -270,9 +270,9 @@ const columnsFile: QTableProps['columns'] = [
},
]
const onRowClick = (evt: Event, row: TreeDataFolder, index: number) => {
const onRowClick = ((_evt, row) => {
getFolder(row.pathname)
}
}) satisfies QTableProps['onRowClick']
</script>
<template>