[Solved] Vue Error: Avoided redundant navigation to current location:/xxxx

Add the following code In router folder 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)
}

No error is reported after restart

Read More: