2018-01-30 03:22:28 +00:00
|
|
|
{{#if props}}
|
|
|
|
<PseudoVirtualListItem :component
|
|
|
|
:props
|
|
|
|
:key
|
|
|
|
:index
|
|
|
|
:scrollToThisItem
|
2018-01-30 17:38:14 +00:00
|
|
|
:intersectionObserver
|
|
|
|
:hide
|
|
|
|
:height
|
2018-01-30 03:22:28 +00: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>
|