vue使用路由进行tab切换

    
A B
routes: [ { path: '/home', name: 'home', component: Home, children: [ {name: 'a', path: 'a', component: aList}, {name: 'b', path: 'b', component: bList} ] } ] //在home页面,又一A和B的Tab菜单,点击进行切换显示aList 和 bList组件

你可能感兴趣的:(vue使用路由进行tab切换)