此处是报错
Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation to current location: "/imports/welcome".
将以下代码写入router/index.js中
const VueRouterPush = VueRouter.prototype.push;
VueRouter.prototype.push = function push(to) {
return VueRouterPush.call(this, to).catch((err) => err);
};