# 侧边栏路由:
![](https://img.kancloud.cn/14/e6/14e62f7596b9c1737cfd00ea6c133ee7_1582x342.png)
## 当children有2个生明的时候自动变成嵌套路由
若不想这样,可以通过设置在根路由中设置`alwaysShow: true`来取消这一特性。
![](https://img.kancloud.cn/5c/da/5cda39da5a72d0f316d319245cc574f7_1442x1060.png)
整个项目的侧边栏是通过路由动态生成的,可以调整侧边栏的内容。
![](https://img.kancloud.cn/8f/a2/8fa2424e197ceaf929d2477beb1d0c57_1398x1017.png)
~~~
{
path: '/example',
alwaysShow: true,
component: Layout,
redirect: '/example/table',
name: 'Example',
meta: { title: '剧本管理', icon: 'el-icon-s-help' },
children: [
{
path: 'table',
name: 'Table',
component: () => import('@/views/table/index'),
meta: { title: '剧本管理', icon: 'table' }
}
]
},
~~~