您好,登錄后才能下訂單哦!
本篇內容主要講解“Vue-router子路由怎么創建”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Vue-router子路由怎么創建”吧!
在我們的商城項目中,后臺管理頁 Admin
涉及到很多操作頁面,比如:
/admin
主頁面
/admin/create
創建新信息
/admin/edit
編輯信息
讓我們通過嵌套路由的方式將它們組織在一起。
在src/views下創建 Admin.vue,并創建admin目錄,以用來存放admin的子頁面( 使用vue-router的子路由,需要在父組件利用 router-view
占位 )
Admin.vue
<template> <div class="title"> <h2>{{ msg }}</h2> <!-- 路由插槽 --> <router-view></router-view> </div> </template> <script> export default { name: "home", data() { return { msg: "This is the Admin Page", }; }, }; </script> <style scoped> </style>
在src/views下創建admin目錄用來存放admin的子頁面,在admin目錄下新建Create.vue 和 Edit.vue 來實現/create
創建新的商品/edit
編輯商品信息
Create.vue
<template> <div> <div class="title"> <h2>This is Admin/Create</h2> </div> </div> </template>
Edit.vue
<template> <div> <div class="title"> <h2>This is Admin/Edit</h2> </div> </div> </template>
增加子路由,子路由的寫法是在原有的路由配置下加入children字段。
children:[ {path:'/',component:xxx}, {path:'xx',component:xxx}]
注意:children里面的path 不要加 / ,加了就表示是根目錄下的路由。
index.js
import Vue from 'vue'import VueRouter from 'vue-router'import Admin from '@/views/Admin.vue'// 導入admin子路由import Create from '@/views/admin/Create';import Edit from '@/views/admin/Edit';Vue.use(VueRouter)const routes = [ { path: '/admin', name: 'Admin', component: Admin, children: [ { path: 'create', component: Create, }, { path: 'edit', component: Edit, } ] }]const router = new VueRouter({ routes})export default router
Vue-router 子路由(嵌套路由)創建完成在應用界面開發中通常由多層嵌套的組件組合而成。但隨著頁面的增多,如果把所有的頁面都塞到一個 routes
數組里面會顯得很亂,你無法確定哪些頁面存在關系。借助 vue-router
提供了嵌套路由的功能,讓我們能把相關聯的頁面組織在一起。
到此,相信大家對“Vue-router子路由怎么創建”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。