当前位置:   article > 正文

vue获取当前路由的子路由列表

vue获取当前路由的子路由

this.$router:获取全局路由

this.$route:获取当前路由信息

  1. computed: {
  2. // 获取当前路由的子路由
  3. routes(){
  4. var routes = {
  5. children: this.$router.options.routes
  6. };
  7. var route = this.$route.matched;
  8. for(var i=0; i<route.length-1; i++){
  9. routes = routes.children.find((e) => (e.name == route[i].name));
  10. }
  11. return routes.children
  12. }
  13. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/254042
推荐阅读
相关标签
  

闽ICP备14008679号