Nuxt/test/fixtures/shared-chunk/pages/index.vue
Simon Tretter b4ffdab790
fix(webpack): fallback for empty chunk name (#7667)
[release]

Co-authored-by: pooya parsa <pyapar@gmail.com>
2020-07-04 17:28:46 +02:00

15 lines
203 B
Vue

<template>
<div>
<MyLazyComponent />
<SharedVendor />
</div>
</template>
<script>
export default {
components: {
MyLazyComponent: () => import('~/components/lazy.vue')
}
}
</script>