watch除了可以监听数据的变化,路由的变化也能被其监听到
效果如下:
nofollow" target="_blank" href="https://gitee.com/zhiqiexing/vue.js/blob/2a2fad33245529f30980cb2ecb3441dc3b9d6724/code/01/40.html">具体代码
当路由发生变化后,在watch中写具体的业务逻辑
rush:js;">
let vm = new Vue({
el: "#app",data: {},router,watch: {
'$route.path': function (newVal,oldVal) {
if (newVal === '/login') {
console.log('欢迎进入登录页面');
}
if (newVal === '/register') {
console.log('欢迎进入注册页面');
}
}
}
})
下面在单独给大家介绍下Vue 监听路由变化的代码,具体代码如下所述:
rush:js;">
watch:{ //监听路由变化
$route( to,from ){
console.log( to,from )
// to,from 分别表示从哪跳转到哪,都是一个对象
// to.path ( 表示的是要跳转到的路由的地址 eg: /home );
}
}
总结
以上所述是小编给大家介绍的vue.js使用watch监听路由变化的方法,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!