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

20 lines
435 B
HTML
Raw Normal View History

2018-02-25 11:20:40 -08:00
{{#await asyncProps}}
{{then props}}
<VirtualListItem :component
:offset
:props
:key
:index
/>
{{/await}}
<script>
import VirtualListItem from './VirtualListItem'
export default {
components: {
VirtualListItem
2018-02-25 11:20:40 -08:00
},
computed: {
asyncProps: async (makeProps, key) => makeProps && makeProps(key)
}
}
</script>