fix: use router.matched

according to vue-router's document, router.matcher should be router.matched
This commit is contained in:
feaswcy 2020-03-01 22:23:57 +08:00 committed by GitHub
parent a45e64fcb2
commit a4d771f5f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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