vue 进入页面每次都调用methods里的方法

// 监听路由,每次进入页面调用方法,放在method里
mounted(){
  this.getPath()
},
methods: {
  getPath(){
    console.log(this.$route.path);
    if (this.$route.path == '你要进入的路由') {
    this.init() // 初始化的方法
    }
  }
},
watch: {
'$route':'getPath'
},

 

posted @ 2021-01-25 10:32  吃不棒的胖胖糖  阅读(6451)  评论(0编辑  收藏  举报