实际场景中,路由通常由多层嵌套的组件组合而成,这时需要使用嵌套路由配置。
·使用children来进行嵌套路由中的子路由设置
这是 User 组件的功能
<div> UserHobby 组件</div>
};
var UserInfo = {
template: `
UserInfo 组件
学校信息
`
};
var UserInfoSchool = {
template: <div> UserInfoSchool 组件</div>
};
var routes = [
{
path: ‘/user’,
component: User,
children: [
{
path: ‘hobby’,
component: UserHobby
},
{
path: ‘info’,
component: UserInfo,
children: [
{
path: ‘school’,
component: UserInfoSchool
},
]
}
]
}
];
var router = new VueRouter({ routes });
var vm = new Vue({
el: ‘#app’,
router
});
</script>
</body>
</html>