pinafore/src/routes/_components/virtualList/VirtualListLazyItem.html

30 wiersze
672 B
HTML
Czysty Zwykły widok Historia

{#if props}
<VirtualListItem {component}
{offset}
{props}
{key}
{index}
/>
{/if}
<script>
import VirtualListItem from './VirtualListItem'
import { mark, stop } from '../../_utils/marks'
export default {
2018-04-20 04:38:01 +00:00
async oncreate () {
2019-08-03 20:49:37 +00:00
const { makeProps, key } = this.get()
if (makeProps) {
2019-08-03 20:49:37 +00:00
const props = await makeProps(key)
mark('VirtualListLazyItem set props')
this.set({ props: props })
stop('VirtualListLazyItem set props')
}
},
data: () => ({
props: void 0
}),
components: {
VirtualListItem
}
}
</script>