vue-router: 命名视图

2017-08-29  本文已影响52人  饥人谷_米弥轮
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
  }
}
上一篇 下一篇

猜你喜欢

热点阅读