vue3使用import 加載組件未渲染出來
components: {
Home: () => import('home/Home')
}
使用defineAsyncComponent加載組件再注冊
import { defineAsyncComponent } from "vue";
const AsyncCategory = defineAsyncComponent(() => import("home/Home"));
export default {
name: "HelloWorld",
props: {
msg: String,
},
components: {
Home: AsyncCategory,
}