- 子路由,也叫路由嵌套,在
children
后跟路由数组来实现; - 数组里和其他配置路由基本相同,需要配置
path
和component
; - 在相应部分添加
<router-view/>
来展现子页面信息,相当于嵌入iframe
。
父页面 (src/components/Home.vue)
1 | <template> |
子页面1 (src/components/one.vue)
1 | <template> |
子页面2 (src/components/two.vue)
1 | <template> |
路由配置 (src/router/index.js)
1 | import Vue from 'vue' |