P粉9707363842023-08-25 09:09:03
在Vue 3中,你需要使用defineAsyncComponent
來懶載入元件
import { defineAsyncComponent } from 'vue' ... components: { LatestBox: defineAsyncComponent(() => import('@/components/LatestBox.vue')) }
https://v3-migration.vuejs.org/breaking-changes/async-components.html#overview