例如在vite+vue3前端工程中,在每个模块单独陪你路由,然后通过一个总的router js文件集中调取所有文件模块的文件内容
const files = import.meta.globEager('@/view/*/router.js');
let route = [];
for (const f in files) {
const o = files[f].default;
o.path = o.path || `/${f.split('/')[2]}`;
route = [].concat(route, o);
}
console.log(route)