JavaScript

超轻量级php框架startmvc

多个vue子路由文件自动化合并的方法

更新时间:2020-09-10 17:00:01 作者:startmvc
1.目录结构废话不多说,直接上图。目录结构,如下图所示2.代码编写位置在router目录下面

1. 目录结构

废话不多说,直接上图。

目录结构,如下图所示

2. 代码编写位置

在router目录下面的index.js文件中写入以下代码


import Vue from 'vue'
import Router from 'vue-router'
 
Vue.use(Router)
 
let routes = []
 
const routerContext = require.context('./', true, /index\.js$/)
 
routerContext.keys().forEach(route => {
 // 如果是根目录的 index.js、 不做任何处理 
 if (route.startsWith('./index')) {
 return
 } 
 const routerModule = routerContext(route) 
 // 兼容 import export 和 require module.export 两种规范 Es modules commonjs
 routes = [...routes, ...(routerModule.default || routerModule)] 
})
 
export default new Router({
 mode: 'history',
 base: process.env.BASE_URL,
 routes: routes
})

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。

vue子路由 vue 子路由 合并