Vue+Element——NavMenu 导航菜单

一.参考页面

1.https://blog.csdn.net/qq_34117170/article/details/80758575

1. 通过代码跳转页面无法选中,例如

this.$router.push({ name: 'invoiceApplyList' })

1-1解决办法



watch: {
    '$router': 'curRoute'
  },
computed: {
    curRoute () {
      let path = this.$route.path
      return path
    }
},

 

你可能感兴趣的:(element-ui)