zl程序教程

您现在的位置是:首页 >  前端

当前栏目

vue 导航保持高亮

Vue 导航 保持 高亮
2023-09-14 08:58:48 时间
/**
       * 页面刷新导航保持高亮
      */
      menuList() {
        let path = this.$route.matched[2].path
        this.navList.forEach((e, i) => {
          if (path.indexOf(e.query.path) != -1) {
            this.navIndex = i
          }
        })
      },