207vue-router嵌套命名视图
Posted gushixianqiancheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了207vue-router嵌套命名视图相关的知识,希望对你有一定的参考价值。
/settings/emails//此后如有路径,则继续匹配 /settings/profile 以下是UserSettings.vue的定义 <div> <h1>UserSettings.vue</h1> <NavBar/> <router-view/> <router-view name="helper"/> </div> { path: ‘/settings‘, component: UserSettings, children: [{ path: ‘emails‘, component: UserEmailsSubscriptions//正常匹配到<router-view/> }, { path: ‘profile‘, components: { default: UserProfile,//默认匹配到<router-view/> helper: UserProfilePreview } }] }
以上是关于207vue-router嵌套命名视图的主要内容,如果未能解决你的问题,请参考以下文章