1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-12 17:30:52 +01:00
2018-01-29 19:22:28 -08:00

24 lines
628 B
HTML

{{#if props}}
<PseudoVirtualListItem :component
:props
:key
:index
:scrollToThisItem
on:renderedListItem
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>