比如下面的路径:
http://localhost/users/list/info/UID
我写成下面的路由配置貌似不太对
{
path: '/users', component: Users,
children: [
{
path: 'list', component: UsersList,
children: [
{path: 'info/:id', component: UsersInfo},
{path: 'change/:id', component: ChangeUsers},
]
},
]
},