1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-03 07:15:47 +01:00

26 lines
694 B
HTML
Raw Normal View History

{{#if props}}
<PseudoVirtualListItem :component
:props
:key
:index
:scrollToThisItem
:intersectionObserver
:hide
:height
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>