今回は、Vue.jsのネストされたルーティング(サブルーティング)についてご紹介します。 Vue.jsのネストされたルーティング(サブルーティング)を使用する際の注意点
について、実際のケースを見てみましょう。見て。
子
let router = new VRouter({ // 如果mode设为history, 那么地址就可以不使用哈希(# 哈希)了,就可以直接访问. http://localhost:8080/#/apple ==>> http://localhost:8080/apple mode: 'history', routes: [ // 做一个映射表 { path: '/apple', component: Apple, // 嵌套路由,子路由插入到了父组件apple中 children: [ { path: 'red', component: RedApple } ] }, { path: '/banana', component: Banana } ] })
<template> <div class="hello"> ....... <router-view></router-view> </div></template>
to red apple <router-link :to="{path:'apple/red'}">to red apple</router-link>
以上がVue.jsのネストルーティング(サブルーティング)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。