// src/main.js
var app = new Vue({
el: '#app',
router,
store,
...App,
created: function() {
console.log(router);
router.push({
path: '/init',
query: {
redirect: router.currentRoute.fullPath
// 进入页面时,先统一转跳到 init 页面进行初始化(判断登录状态)
// 附上当前 fullPath 用于初始化完成后转跳回来
}
});
}
});
为什么在 main.js 中,通过 router.currentRoute.fullPath 或 this.$route.fullPath 后去到的地址都是 '/' ?