mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 10:24:50 +00:00
10 lines
373 B
Vue
10 lines
373 B
Vue
<template>
|
|
<div>
|
|
<LazyNCompAll message="lazy-named-comp-all" />
|
|
<LazyNCompClient message="lazy-named-comp-client" />
|
|
<LazyNCompServer message="lazy-named-comp-server" />
|
|
<div style="height:3000px">This is a very tall div</div>
|
|
<LazyDelayedWrapperTestComponent>This shouldn't be visible at first!</LazyDelayedWrapperTestComponent>
|
|
</div>
|
|
</template>
|