在挂载完之后输出:
mounted(){
console.log(this.$route)
}
懒加载前:
懒加载后:
迷惑,我的值去哪里了?是不是vue-router 还没准备好我就输出了?
加个setimeout 试试
哦豁,我的值又出现了~
百度一下~
vue-router 初始化是需要一段时间的,在完成之前,取值只能拿到初始的默认值。
在 mounted 中 router 初始化可能还没有完成。
用onReady解决
this.$router.onReady(() => {
console.log(this.$route)
});
补充一下:
使用 onload 也可以拿到