美文网首页
vue-router: 命名视图

vue-router: 命名视图

作者: 饥人谷_米弥轮 | 来源:发表于2017-08-29 18:46 被阅读52次
  • 当需要在同一层级下同时展示多个视图时,需要添加新的router-view并新增name属性指定名字,然后在路由配置项需要同级展示的路由中添加新的路由组件,defaule表示默认路由组件,将通过没有添加的router-view标签进行展示
image.png
app.js
<template>
    <div id="app">
      <router-view name="hobby"></router-view>
      <router-view name="abc"></router-view>   
      <router-view class="center"></router-view>
    </div>  
</template>
router文件
{
  path: '/document',
  name: 'document',
  components: {
    default: document,
    hobby: hobby,
    abc: abc
  }
}

相关文章

网友评论

      本文标题:vue-router: 命名视图

      本文链接:https://www.haomeiwen.com/subject/tkladxtx.html