Open
Description
Describe the feature request
The documentation doesn't specify this, but in the source code using a #default
slot is clearly supported. I think it would be great if that was documented.
Example
<VirtualList
data-key="id"
:data-sources="epcisEvents"
:data-component="EmptyComponent"
:keeps="6"
>
<template #item="{ index, item }">
<MyComponent
:list-item="item"
@custom-listener
/>
</template>
</VirtualList>