From a4d771f5f5adccfeaf577aae7213cdc64af69d65 Mon Sep 17 00:00:00 2001 From: feaswcy <708853816@qq.com> Date: Sun, 1 Mar 2020 22:23:57 +0800 Subject: [PATCH] fix: use router.matched according to vue-router's document, router.matcher should be router.matched --- src/router/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/index.js b/src/router/index.js index 2e522b2a..efd9ad48 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -398,7 +398,7 @@ const router = createRouter() // Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465 export function resetRouter() { const newRouter = createRouter() - router.matcher = newRouter.matcher // reset router + router.matched = newRouter.matched // reset router } export default router