Vue

Vue二级路由配置

2017-12-29  本文已影响194人  xlayzheng
       {path:'/hot',component:Hot,
             children:[
              {path:'/',redirect:'film'},                  //配置默认显示模板内容
              {path:'film',component:{template:'<p>妖猫传</p>'}},
              {path:'tv',component:{template:'<p>河神</p>'}},
              {path:'music',component:{template:'<p>缘分一道桥</p>'}}
             ]
        }
<template id="hot">
        <div class="hotWrap">
                <h2>Hot</h2>
                <router-link to="/hot/film">film</router-link>
                <router-link to="/hot/tv">tv</router-link>
                <router-link to="/hot/music">music</router-link>
                <router-view></router-view>
        </div>
</template>
上一篇 下一篇

猜你喜欢

热点阅读