2018-01-29 19:22:28 -08:00
|
|
|
{{#if props}}
|
|
|
|
<PseudoVirtualListItem :component
|
|
|
|
:props
|
|
|
|
:key
|
|
|
|
:index
|
2018-02-04 10:05:01 -08:00
|
|
|
:length
|
2018-01-30 09:38:14 -08:00
|
|
|
:intersectionObserver
|
2018-01-30 21:17:01 -08:00
|
|
|
:isIntersecting
|
|
|
|
:isCached
|
2018-01-30 09:38:14 -08:00
|
|
|
:height
|
2018-01-29 19:22:28 -08:00
|
|
|
on:scrollToPosition
|
|
|
|
/>
|
|
|
|
{{/if}}
|
|
|
|
<script>
|
|
|
|
import PseudoVirtualListItem from './PseudoVirtualListItem.html'
|
|
|
|
export default {
|
|
|
|
async oncreate() {
|
|
|
|
let makeProps = this.get('makeProps')
|
|
|
|
let key = this.get('key')
|
|
|
|
let props = await makeProps(key)
|
|
|
|
this.set({ props: props })
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
PseudoVirtualListItem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|