mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
b4ffdab790
[release] Co-authored-by: pooya parsa <pyapar@gmail.com>
15 lines
203 B
Vue
15 lines
203 B
Vue
<template>
|
|
<div>
|
|
<MyLazyComponent />
|
|
<SharedVendor />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
components: {
|
|
MyLazyComponent: () => import('~/components/lazy.vue')
|
|
}
|
|
}
|
|
</script>
|