forked from cybrespace/pinafore
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			No EOL
		
	
	
		
			729 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			No EOL
		
	
	
		
			729 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{#if props}}
 | |
|   <PseudoVirtualListItem :component
 | |
|                          :props
 | |
|                          :key
 | |
|                          :index
 | |
|                          :length
 | |
|                          :intersectionObserver
 | |
|                          :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')
 | |
|       let props = await makeProps(key)
 | |
|       this.set({ props: props })
 | |
|     },
 | |
|     components: {
 | |
|       PseudoVirtualListItem
 | |
|     }
 | |
|   }
 | |
| </script> |