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