2020
10-09
10-09
vue-router重写push方法,解决相同路径跳转报错问题
修改vue-router的配置文件,默认位置router/index.jsimportVuefrom'vue'importRouterfrom'vue-router'/***重写路由的push方法*解决,相同路由跳转时,报错*添加,相同路由跳转时,触发watch(针对el-menu,仅限string方式传参,形如"view?id=5")*///保存原来的push函数constrouterPush=Router.prototype.push//重写push函数Router.prototype.push=functionpush(location){//这个if语句在跳转相同...
继续阅读 >