32 lines
940 B
HTML
32 lines
940 B
HTML
{{#if props}}
|
|
<PseudoVirtualListItem :component
|
|
:props
|
|
:key
|
|
:index
|
|
:length
|
|
:intersectionObserver
|
|
:isIntersecting
|
|
:isCached
|
|
:height
|
|
on:scrollToPosition
|
|
/>
|
|
{{/if}}
|
|
<script>
|
|
import PseudoVirtualListItem from './PseudoVirtualListItem.html'
|
|
import { mark, stop } from '../../_utils/marks'
|
|
|
|
export default {
|
|
async oncreate () {
|
|
let { makeProps, key } = this.get() || {} // https://github.com/sveltejs/svelte/issues/1354
|
|
if (makeProps) {
|
|
let props = await makeProps(key)
|
|
mark('PseudoVirtualListLazyItem set props')
|
|
this.set({props: props})
|
|
stop('PseudoVirtualListLazyItem set props')
|
|
}
|
|
},
|
|
components: {
|
|
PseudoVirtualListItem
|
|
}
|
|
}
|
|
</script> |