首页 > 其他分享 >vue 跳转页面时报错: NavigationDuplicated: Avoided redundant navigation to current location: "/page&quo

vue 跳转页面时报错: NavigationDuplicated: Avoided redundant navigation to current location: "/page&quo

时间:2022-08-30 17:58:45浏览次数:52  
标签:vue redundant location VueRouter 跳转 push router

vue-router路由重复的解决方法:

  在router文件夹下面的index.js中加上下面几句代码:

  

    import VueRouter from 'vue-router'  

    const originalPush = VueRouter.prototype.push

    VueRouter.prototype.push = function push(location) {       return originalPush.call(this, location).catch(err => err)     }    

标签:vue,redundant,location,VueRouter,跳转,push,router
From: https://www.cnblogs.com/qianxiaoniantianxin/p/16640268.html

相关文章

  • vue+element增加
    <el-button         @click="增加的方法"> <el-form        :model="formData"> <el-table        :data=......
  • vue-cli安装错误的记录
    错误是由于想升级vue-cli引起的npmERR!Invalidtagname"@vue-cli":TagsmaynothaveanycharactersthatencodeURIComponentencodes.  仔细一看npminstal......
  • Jenkins+SpringCloud(多模块)+Vue项目详细配置
    一、Jenkins安装及所需插件安装   安装过程略。   我这用到工具包括JDK、Git、Maven、NodeJS:可以选择自行在服务器安装,也可以通过Jenkins自动安装,位置在系统......
  • vue3+ pinia 的初实用
    固定不变的:stores/index.jsimport{createPinia}from"pinia"constpinia=createPinia()exportdefaultpinia main.jsimport{createApp}from......
  • vue路由拦截器
    vue路由拦截器有三种路由拦截器:全局的,针对单个路由的,针对单个组件的1.全局的路由拦截器写在router下的index.js的exportdefaultrouter之前的代码。前置拦截器:route......
  • vue3 Teleport 传送门
    先放个官方文档链接~某位同事研究vue3时,发现vue3的Teleport使用起来有点问题。<template><divclass="test">1<divclass="qwe">2</div><teleportto=".q......
  • vue2和vue3的modules :
    store/modules/home.jsexportdefault{state:{//服务器数据banners:[],recommends:[]},mutations:{changeBanners(state,banners......
  • vite+vue2 的学习与问题记录
    描述按照博文[https://juejin.cn/post/6988808776291713060]指导步骤执行完成。问题记录运行npmrundev控制台显示failedtoloadconfigfrom/Users/study-vite-vu......
  • vue3+vuex 的 action 来发送网络请求的
    <template><divclass="app"><h3>HomePage</h3><ul><templatev-for="itemin$store.state.banners":key="item.acm"><li>{{item.title......
  • 058_末晨曦Vue技术_过渡 & 动画之过渡的类名
    进入/离开&列表过渡点击打开视频讲解更加详细概述Vue在插入、更新或者移除DOM时,提供多种不同方式的应用过渡效果。包括以下工具:在CSS过渡和动画中自动应用cl......