2018-02-25 19:20:40 +00:00
|
|
|
{{#await asyncProps}}
|
|
|
|
{{then props}}
|
2018-01-30 03:22:28 +00:00
|
|
|
<PseudoVirtualListItem :component
|
|
|
|
:props
|
|
|
|
:key
|
|
|
|
:index
|
2018-02-04 18:05:01 +00:00
|
|
|
:length
|
2018-01-30 17:38:14 +00:00
|
|
|
:intersectionObserver
|
2018-01-31 05:17:01 +00:00
|
|
|
:isIntersecting
|
|
|
|
:isCached
|
2018-01-30 17:38:14 +00:00
|
|
|
:height
|
2018-01-30 03:22:28 +00:00
|
|
|
on:scrollToPosition
|
|
|
|
/>
|
2018-02-25 19:20:40 +00:00
|
|
|
{{/await}}
|
2018-01-30 03:22:28 +00:00
|
|
|
<script>
|
|
|
|
import PseudoVirtualListItem from './PseudoVirtualListItem.html'
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
PseudoVirtualListItem
|
2018-02-25 19:20:40 +00:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
asyncProps: async (makeProps, key) => makeProps && makeProps(key)
|
2018-01-30 03:22:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|