mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 18:34:50 +00:00
19 lines
511 B
Vue
19 lines
511 B
Vue
<template>
|
|
<div>
|
|
<LazyNCompAll message="lazy-named-comp-all" />
|
|
<LazyNCompClient message="lazy-named-comp-client" />
|
|
<LazyNCompServer message="lazy-named-comp-server" />
|
|
<LazyEventDelayedEvent id="lazyevent" />
|
|
<LazyEventView />
|
|
<LazyEventDelayedEvent
|
|
id="lazyevent2"
|
|
:loader="createEventLoader(['click'])"
|
|
/>
|
|
<LazyIdleDelayedNetwork />
|
|
<div style="height:3000px">
|
|
This is a very tall div
|
|
</div>
|
|
<LazyVisibleDelayedVisible />
|
|
</div>
|
|
</template>
|