当前位置: 代码迷 >> 综合 >> vue 动态加载组件
  详细解决方案

vue 动态加载组件

热度:106   发布时间:2023-10-10 19:12:01.0
<component :is="currentView"></component>
this.currentView = () => import("@/views" + 组件位置 + ".vue");

 

  相关解决方案