35 lines
936 B
HTML
35 lines
936 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()
|
|
if (makeProps) {
|
|
let props = await makeProps(key)
|
|
mark('PseudoVirtualListLazyItem set props')
|
|
this.set({props: props})
|
|
stop('PseudoVirtualListLazyItem set props')
|
|
}
|
|
},
|
|
data: () => ({
|
|
props: void 0
|
|
}),
|
|
components: {
|
|
PseudoVirtualListItem
|
|
}
|
|
}
|
|
</script> |