elementUI-admin router.addRoutes 只显示固定路由,不显示动态路由解决办法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elementUI-admin router.addRoutes 只显示固定路由,不显示动态路由解决办法相关的知识,希望对你有一定的参考价值。
参考技术A 记录下,搞了好久终于解决了。先找到layout/components/Sidebar/index
this.$router.options.routes 改成自己的在store定义的routes,
因为在permission.js(store/modules)里把动态和固定路由进行合并后,改变了state的routes这个才是最终的路由。
运行饿了么Element ui -admin出现问题
错误产生环境
运行 elementui-admin 项目时产生
错误描述
npm ERR! code 128
npm ERR! An unknown git error occurred
npm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/nhn/raphael.git
npm ERR! git@github.com: Permission denied (publickey).
npm ERR! fatal: Could not read from remote repository.
npm ERR!
npm ERR! Please make sure you have the correct access rights
npm ERR! and the repository exists.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\\Users\\tx\\AppData\\Local\\npm-cache\\_logs\\2022-02-26T12_35_06_067Z-debug.log
错误原因
不懂
解决办法
打开黑窗口运行以下代码
git config --global http.sslverify "false"
第一条命令执行每用的话换第二条命令
git config --global url."https://".insteadOf git://
运行后 重新 npm install
以上是关于elementUI-admin router.addRoutes 只显示固定路由,不显示动态路由解决办法的主要内容,如果未能解决你的问题,请参考以下文章