模块化路由解决vue项目中路由文件越来越大的问题

本文主要是介绍模块化路由解决vue项目中路由文件越来越大的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

随着项目的不断扩展原始路由文件越来越大,如下

//index.js 文件内容import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/components/waf_flow_alarm/frame/Home'
import Login from '@/components/waf_flow_alarm/page/system/login.vue'
import ChangePwd from '@/components/waf_flow_alarm/page/system/changepwd.vue'Vue.use(Router)const originalPush = Router.prototype.pushRouter.prototype.push = function push(location) {return originalPush.call(this, location).catch(err => err)
}export default new Router({routes: [{path: '/login',name: 'login',component: Login,},{path: '/changepwd/:username',name: 'changepwd',component: ChangePwd,},{path: '/',name: 'Home',component: Home,redirect:'/front',children:[{path: '/front',name: 'front',component: () => import("@/components/waf_flow_alarm/page/system/front.vue")},{path: '/empty',name: 'empty',component: () => import("@/components/waf_flow_alarm/page/system/empty.vue")},{path: '/wafStatusWiki',name: 'wafStatusWiki',component: () => import("@/components/waf_flow_alarm/page/wiki/wafStatusWiki.vue")},{path: '/defenseIpQuery',name: 'defenseIpQuery',component: () => import("@/components/waf_flow_alarm/page/monitor_query/defenseIpQuery.vue")},{path: '/defenseDomainQuery',name: 'defenseDomainQuery',component: () => import("@/components/waf_flow_alarm/page/monitor_query/defenseDomainQuery.vue")},{path: '/defenseIpHistoryQuery',name: 'defenseIpHistoryQuery',component: () => import("@/components/waf_flow_alarm/page/monitor_query/defenseIpHistoryQuery.vue")},{path: '/defenseDomainHistoryQuery',name: 'defenseDomainHistoryQuery',component: () => import("@/components/waf_flow_alarm/page/monitor_query/defenseDomainHistoryQuery.vue")},{path: '/currentBlock',name: 'currentBlock',component: () => import("@/components/waf_flow_alarm/page/monitor_query/currentBlock.vue")},{path: '/historyBlock',name: 'historyBlock',component: () => import("@/components/waf_flow_alarm/page/monitor_query/historyBlock.vue")},{path: '/ccBlock',name: 'ccBlock',component: () => import("@/components/waf_flow_alarm/page/monitor_query/ccBlock.vue")},{path: '/proActiveUserAgent',name: 'proActiveUserAgent',component: () => import("@/components/waf_flow_alarm/page/active_defense/proActiveUserAgent.vue")},{path: '/proActiveUserAgentQwmh',name: 'proActiveUserAgentQwmh',component: () => import("@/components/waf_flow_alarm/page/active_defense/proActiveUserAgentQwmh.vue")},{path: '/proActiveBlockIpByNginx',name: 'proActiveBlockIpByNginx',component: () => import("@/components/waf_flow_alarm/page/active_defense/proActiveBlockIpByNginx.vue")},{path: '/proActiveBlockDomainByNginx',name: 'proActiveBlockDomainByNginx',component: () => import("@/components/waf_flow_alarm/page/active_defense/proActiveBlockDomainByNginx.vue")},{path: '/proActiveBlockRefererByNginx',name: 'proActiveBlockRefererByNginx',component: () => import("@/components/waf_flow_alarm/page/active_defense/proActiveBlockRefererByNginx.vue")},{path: '/proActiveUri',name: 'proActiveUri',component: () => import("@/components/waf_flow_alarm/page/active_defense/proActiveUri.vue")},{path: '/proManmachineIp',name: 'proManmachineIp',component: () => import("@/components/waf_flow_alarm/page/active_defense/proManmachineIp.vue")},{path: '/proManmachineDomain',name: 'proManmachineDomain',component: () => import("@/components/waf_flow_alarm/page/active_defense/proManmachineDomain.vue")},{path: '/proQuestionIp',name: 'proQuestionIp',component: () => import("@/components/waf_flow_alarm/page/active_defense/proQuestionIp.vue")},{path: '/dbinfosearch',name: 'dbinfosearch',component: () => import("@/components/waf_flow_alarm/page/conf_manage/dbinfosearch.vue")},{path: '/ipinfosearch',name: 'ipinfosearch',component: () => import("@/components/waf_flow_alarm/page/conf_manage/ipinfosearch.vue")},{path: '/sqlproxyhostsearch',name: 'sqlproxyhostsearch',component: () => import("@/components/waf_flow_alarm/page/conf_manage/sqlproxyhostsearch.vue")},{path: '/alarmPoolCfg',name: 'alarmPoolCfg',component: () => import("@/components/waf_flow_alarm/page/conf_manage/alarmPoolCfg.vue")},{path: '/alarmPoolDetail',name: 'alarmPoolDetail',component: () => import("@/components/waf_flow_alarm/page/conf_manage/alarmPoolDetail.vue")},{path: '/alarmSingleCfg',name: 'alarmSingleCfg',component: () => import("@/components/waf_flow_alarm/page/conf_manage/alarmSingleCfg.vue")},{path: '/alarmRawdata',name: 'alarmRawdata',component: () => import("@/components/waf_flow_alarm/page/conf_manage/alarmRawdata.vue")},{path: '/thirdpartyNginxBlockIp',name: 'thirdpartyNginxBlockIp',component: () => import("@/components/waf_flow_alarm/page/conf_manage/thirdpartyNginxBlockIp.vue")},{path: '/alarmWhitelistIp',name: 'alarmWhitelistIp',component: () => import("@/components/waf_flow_alarm/page/conf_manage/alarmWhitelistIp.vue")},{path: '/alarmWhitelistDomain',name: 'alarmWhitelistDomain',component: () => import("@/components/waf_flow_alarm/page/conf_manage/alarmWhitelistDomain.vue")},{path: '/roleManage',name: 'roleManage',component: () => import("@/components/waf_flow_alarm/page/system/roleManage.vue")},{path: '/userManage',name: 'userManage',component: () => import("@/components/waf_flow_alarm/page/system/userManage.vue")},{path: '/resourceManage',name: 'resourceManage',component: () => import("@/components/waf_flow_alarm/page/system/resourceManage.vue")},{path: '/actionLog',name: 'actionlog',component: () => import("@/components/waf_flow_alarm/page/system/actionLog.vue")},{path: '/dictManage',name: 'dictManage',component: () => import("@/components/waf_flow_alarm/page/system/dictManage.vue")}]}]
})

路由配置越来越大,导致代码的可读性和维护性变差。为了解决这个问题,你可以采取以下几个优化措施:

1. 模块化路由配置

将路由按模块拆分到多个文件中,并在主路由文件中进行导入。这不仅能减少单个文件的长度,还能使得不同模块的路由配置更加清晰。

2. 动态路由加载

通过 require.context 动态加载路由配置,减少手动导入的代码量。

3. 懒加载组件

对所有的组件使用懒加载,这样不仅可以优化路由文件,还能提升应用性能。

以下是具体的实现步骤:

Step 1: 创建路由模块

src/router/modules/ 文件夹下创建多个路由模块文件,每个文件包含特定模块的路由配置。例如:

  • src/router/modules/system.js
  • src/router/modules/monitor_query.js
  • src/router/modules/active_defense.js
  • src/router/modules/conf_manage.js
// src/router/modules/system.js
export default [{path: '/roleManage',name: 'roleManage',component: () => import("@/components/waf_flow_alarm/page/system/roleManage.vue")},{path: '/userManage',name: 'userManage',component: () => import("@/components/waf_flow_alarm/page/system/userManage.vue")},// 其他 system 模块路由
];

其他模块类似配置。

Step 2: 在主路由文件中导入这些模块

在主路由文件中导入这些模块的路由配置,并合并它们:

// src/router/index.js
import Vue from 'vue';
import Router from 'vue-router';import systemRoutes from './modules/system';
import monitorQueryRoutes from './modules/monitor_query';
import activeDefenseRoutes from './modules/active_defense';
import confManageRoutes from './modules/conf_manage';Vue.use(Router);const routes = [{path: '/login',name: 'login',component: () => import('@/components/Login.vue')},{path: '/changepwd/:username',name: 'changepwd',component: () => import('@/components/ChangePwd.vue')},{path: '/',name: 'Home',component: () => import('@/components/Home.vue'),redirect: '/front',children: [{path: '/front',name: 'front',component: () => import('@/components/waf_flow_alarm/page/system/front.vue')},// 使用模块化路由...systemRoutes,...monitorQueryRoutes,...activeDefenseRoutes,...confManageRoutes,]}
];export default new Router({routes
});
Step 3: 懒加载所有组件

确保在所有路由中,组件的导入都是通过懒加载的方式:

component: () => import('@/components/YourComponent.vue')

总结

通过上述方法,你可以将路由配置拆分成多个模块,提升代码的可维护性,同时通过懒加载优化性能。


a. 继续为其他项目模块编写模块化路由文件。

b. 添加路由守卫或动态路由处理逻辑以进一步优化代码。

这篇关于模块化路由解决vue项目中路由文件越来越大的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1094584

相关文章

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

SpringIntegration消息路由之Router的条件路由与过滤功能

《SpringIntegration消息路由之Router的条件路由与过滤功能》本文详细介绍了Router的基础概念、条件路由实现、基于消息头的路由、动态路由与路由表、消息过滤与选择性路由以及错误处理... 目录引言一、Router基础概念二、条件路由实现三、基于消息头的路由四、动态路由与路由表五、消息过滤

Spring事务中@Transactional注解不生效的原因分析与解决

《Spring事务中@Transactional注解不生效的原因分析与解决》在Spring框架中,@Transactional注解是管理数据库事务的核心方式,本文将深入分析事务自调用的底层原理,解释为... 目录1. 引言2. 事务自调用问题重现2.1 示例代码2.2 问题现象3. 为什么事务自调用会失效3

一文教你如何将maven项目转成web项目

《一文教你如何将maven项目转成web项目》在软件开发过程中,有时我们需要将一个普通的Maven项目转换为Web项目,以便能够部署到Web容器中运行,本文将详细介绍如何通过简单的步骤完成这一转换过程... 目录准备工作步骤一:修改​​pom.XML​​1.1 添加​​packaging​​标签1.2 添加

mysql出现ERROR 2003 (HY000): Can‘t connect to MySQL server on ‘localhost‘ (10061)的解决方法

《mysql出现ERROR2003(HY000):Can‘tconnecttoMySQLserveron‘localhost‘(10061)的解决方法》本文主要介绍了mysql出现... 目录前言:第一步:第二步:第三步:总结:前言:当你想通过命令窗口想打开mysql时候发现提http://www.cpp

tomcat多实例部署的项目实践

《tomcat多实例部署的项目实践》Tomcat多实例是指在一台设备上运行多个Tomcat服务,这些Tomcat相互独立,本文主要介绍了tomcat多实例部署的项目实践,具有一定的参考价值,感兴趣的可... 目录1.创建项目目录,测试文China编程件2js.创建实例的安装目录3.准备实例的配置文件4.编辑实例的

SpringBoot启动报错的11个高频问题排查与解决终极指南

《SpringBoot启动报错的11个高频问题排查与解决终极指南》这篇文章主要为大家详细介绍了SpringBoot启动报错的11个高频问题的排查与解决,文中的示例代码讲解详细,感兴趣的小伙伴可以了解一... 目录1. 依赖冲突:NoSuchMethodError 的终极解法2. Bean注入失败:No qu