原理:watch监听 原理是监听模式 下的新旧数据改变 他是2个条件语句 所以会执行2次

解决方案:使用锁的概念

data() {
        return {
            isGetRoute:false
        }
    },
  watch: {
      $route(route) {
          if (this.isGetRoute) {
            this.isGetRoute = !this.isGetRoute
            console.log(this.isGetRoute,'this.isGetRoute')
            store.commit('permission/getCurrentPagePermission', route.path)
            console.log(store.state.permission.currentPagePermission,'当前路由下的权限')   
          }
}

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐