pinafore/routes/_components/pseudoVirtualList/PseudoVirtualListLazyItem.html

29 lines
762 B
HTML
Raw Normal View History

{{#if props}}
<PseudoVirtualListItem :component
:props
:key
:index
2018-02-04 18:05:01 +00:00
:length
:intersectionObserver
2018-01-31 05:17:01 +00:00
:isIntersecting
:isCached
:height
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 01:54:16 +00:00
if (makeProps) {
let props = await makeProps(key)
this.set({props: props})
}
},
components: {
PseudoVirtualListItem
}
}
</script>