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,
}