欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue-router响应路由参数的变化

程序员文章站 2022-07-07 20:10:22
vue-router 响应路由参数的变化 watch: { '$route' (to, from) { // 对路由变化作出响应... }...

vue-router 响应路由参数的变化

watch: {
    '$route' (to, from) {
      // 对路由变化作出响应...
    }
  }

方法二

beforerouteupdate (to, from, next) {
    // react to route changes...
    // don't forget to call next()
  }