fix: type errors

This commit is contained in:
三咲智子 2022-11-27 16:54:00 +08:00
parent c4af4a610e
commit a101b79486
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
4 changed files with 11 additions and 5 deletions

View file

@ -10,6 +10,14 @@ const { paginator, keyProp = 'id', virtualScroller = false } = defineProps<{
virtualScroller: boolean
}>()
defineSlots<{
default: {
item: any
active?: boolean
}
loading: {}
}>()
const { items, state, endAnchor, error } = usePaginator(paginator)
</script>