0
我想從組件created()
方法訪問Vue路由器this.$router
。但是,它顯示了Cannot read property '$router' of null
錯誤。它看起來像Vue路由器不能從created()
方法訪問。有其他選擇嗎?Vue路由器從Created()方法顯示爲空
created() {
this.$router.push('/user')
}
我想從組件created()
方法訪問Vue路由器this.$router
。但是,它顯示了Cannot read property '$router' of null
錯誤。它看起來像Vue路由器不能從created()
方法訪問。有其他選擇嗎?Vue路由器從Created()方法顯示爲空
created() {
this.$router.push('/user')
}
// this is inside your component
beforeRouteEnter (to, from, next) {
next('/user');
},
created() {
// ...
}
啊,這是我如何目前做。但是,想想如果我們可以從'created()'方法做到這一點,那會更好。 –
更好?你也可以在'mounted()'裏面嘗試。 –
@MdMazedulIslamKhan讓我知道是否有什麼要完成這一個。 –