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嵌套命名视图的主要内容,如果未能解决你的问题,请参考以下文章

Recyclerview 滚动在嵌套滚动视图中的片段中不起作用

vue-router-6-命名视图

前端开发简说Vue-router路由

vue全家桶

嵌套片段没有找到id的视图

嵌套滚动视图自动滚动到底部