vue同一个页面可以有多个router-view

使用Vue+Element搭建项目的时候,为了避免一个页面过大,将tab里面的内容分成多个页面,并使用同级视图展示


          
            
          
          
            
          
          
            
          
          
            
          
          
            
          
        

分别给router-view定义一个name,默认显示的可以不用定义

然后在路由中定义 components  ,   

path: '/admin/userManagement/userNew/userShow',
components: {
   default: AdminUserShow,
   second: AdminUserGroup
}

默认显示的name在components中定义为default

详情可以查看官方文档

你可能感兴趣的:(vue.js)