fix: make virtualScroller optional

This commit is contained in:
三咲智子 2022-11-28 21:14:27 +08:00
parent 16632445f2
commit a96755dd36
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E

View file

@ -7,7 +7,7 @@ import type { Paginator, WsEvents } from 'masto'
const { paginator, stream, keyProp = 'id', virtualScroller = false } = defineProps<{
paginator: Paginator<any, any[]>
keyProp?: string
virtualScroller: boolean
virtualScroller?: boolean
stream?: WsEvents
}>()