pinafore/routes/_components/virtualList/VirtualListLazyItem.html
greenkeeper[bot] 8dbc1b0503 Update standard to the latest version 🚀 (#519)
* chore(package): update standard to version 12.0.0

* package lock update

* fix eslint
2018-08-29 21:42:57 -07:00

30 lines
668 B
HTML

{#if props}
<VirtualListItem {component}
{offset}
{props}
{key}
{index}
/>
{/if}
<script>
import VirtualListItem from './VirtualListItem'
import { mark, stop } from '../../_utils/marks'
export default {
async oncreate () {
let { makeProps, key } = this.get()
if (makeProps) {
let props = await makeProps(key)
mark('VirtualListLazyItem set props')
this.set({ props: props })
stop('VirtualListLazyItem set props')
}
},
data: () => ({
props: void 0
}),
components: {
VirtualListItem
}
}
</script>