mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-17 06:01:34 +00:00
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>
|