docs: add router err catch (#4266)

This commit is contained in:
Veath 2019-08-28 06:11:05 +08:00 committed by neverland
parent ecbdc2bede
commit 0f72340c8d

View File

@ -34,7 +34,7 @@ export function initIframeRouter() {
// should preserve hash for anchor
if (window.vueRouter.currentRoute.path !== path) {
window.vueRouter.replace(path);
window.vueRouter.replace(path).catch(() => {});
}
};
}