问题描述
vue3 Elementplus 使用component: () => import(@/views/${item.componentPath}.vue)加载动态路由菜单不跳转, 报错
Unknown variable dynamic import: …/views/system/user/index.vue at dynamic-import-helper.js:7:96
解决
使用
使用 let modules = import.meta.glob('../views/*/.vue') 先导入,再用modules加载
component: modules[../views/${item.componentPath}.vue
]