實現功能:
- 當點擊左側不同的菜單,右側會切換顯示不同的內容
- 點擊詳情鏈接,會從列表頁跳轉到詳情頁,把用戶所對應的id通過路由的形式傳遞過去
用到的路由技術要點:
- 路由的基礎用法
- 嵌套路由
- 路由重定向
- 路由傳參
- 編程式導航
主要實現步驟:根據項目的整體布局划分好組件結構,通過路由導航控制組件的顯示。
1. 抽離並渲染App根組件
2. 將左側菜單改造為路由鏈接
3. 創建左側菜單對應的路由組件
4. 在右側主體區域添加路由占位符
5. 添加子路由規則
6. 通過路由重定向默認渲染用戶組件
7. 渲染用戶列表數據
8. 編程式導航跳轉到用戶詳情頁
9. 實現后退功能
引入相應的包→創建App根組件→創建路由對象→在路由對象中放了一個路由規則→將路由規則掛在到vm對象下
完整代碼如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>基於vue-router的案例</title> <style type="text/css"> html, body, #app { margin: 0; padding: 0px; height: 100%; } .header { height: 50px; background-color: #545c64; line-height: 50px; text-align: center; font-size: 24px; color: #fff; } .footer { height: 40px; line-height: 40px; background-color: #888; position: absolute; bottom: 0; width: 100%; text-align: center; color: #fff; } .main { display: flex; position: absolute; top: 50px; bottom: 40px; width: 100%; } .content { flex: 1; text-align: center; height: 100%; } .left { flex: 0 0 20%; background-color: #545c64; } .left a { color: white; text-decoration: none; } .right { margin: 5px; } .btns { width: 100%; height: 35px; line-height: 35px; background-color: #f5f5f5; text-align: left; padding-left: 10px; box-sizing: border-box; } button { height: 30px; background-color: #ecf5ff; border: 1px solid lightskyblue; font-size: 12px; padding: 0 20px; } .main-content { margin-top: 10px; } ul { margin: 0; padding: 0; list-style: none; } ul li { height: 45px; line-height: 45px; background-color: #a0a0a0; color: #fff; cursor: pointer; border-bottom: 1px solid #fff; } table { width: 100%; border-collapse: collapse; } td, th { border: 1px solid #eee; line-height: 35px; font-size: 12px; } th { background-color: #ddd; } </style> <script src="./public/js/vue.js"></script> <script src="./public/js/vue-router_3.0.2.js"></script> </head> <body> <!-- 要被 vue 實例所控制的區域 --> <div id="app"> <!-- 路由占位符 --> <router-view></router-view> </div> <script> // 定義 APP 根組件 const App = { template: `<div> <!-- 頭部區域 --> <header class="header">后台管理系統</header> <!-- 中間主體區域 --> <div class="main"> <!-- 左側菜單欄 --> <div class="content left"> <ul> <li><router-link to="/users">用戶管理</router-link></li> <li><router-link to="/rights">權限管理</router-link></li> <li><router-link to="/goods">商品管理</router-link></li> <li><router-link to="/orders">訂單管理</router-link></li> <li><router-link to="/settings">系統設置</router-link></li> </ul> </div> <!-- 右側內容區域 --> <div class="content right"><div class="main-content"> <router-view /> </div></div> </div> <!-- 尾部區域 --> <footer class="footer">版權信息</footer> </div>` } const Users = { data() { return { userlist: [ { id: 1, name: '張三', age: 10 }, { id: 2, name: '李四', age: 20 }, { id: 3, name: '王五', age: 30 }, { id: 4, name: '趙六', age: 40 } ] } }, methods: { goDetail(id) { console.log(id) this.$router.push('/userinfo/' + id) } }, template: `<div> <h3>用戶管理區域</h3> <table> <thead> <tr><th>編號</th><th>姓名</th><th>年齡</th><th>操作</th></tr> </thead> <tbody> <tr v-for="item in userlist" :key="item.id"> <td>{{item.id}}</td> <td>{{item.name}}</td> <td>{{item.age}}</td> <td> <a href="javascript:;" @click="goDetail(item.id)">詳情</a> </td> </tr> </tbody> </table> </div>` } const UserInfo = { props: ['id'], template: `<div> <h5>用戶詳情頁 --- 用戶Id為:{{id}}</h5> <button @click="goback()">后退</button> </div>`, methods: { goback() { // 實現后退功能 this.$router.go(-1) } } } const Rights = { template: `<div> <h3>權限管理區域</h3> </div>` } const Goods = { template: `<div> <h3>商品管理區域</h3> </div>` } const Orders = { template: `<div> <h3>訂單管理區域</h3> </div>` } const Settings = { template: `<div> <h3>系統設置區域</h3> </div>` } // 創建路由對象 const router = new VueRouter({ routes: [ { path: '/', component: App, redirect: '/users', children: [ { path: '/users', component: Users }, { path: '/userinfo/:id', component: UserInfo, props: true }, { path: '/rights', component: Rights }, { path: '/goods', component: Goods }, { path: '/orders', component: Orders }, { path: '/settings', component: Settings } ] } ] }) const vm = new Vue({ el: '#app', router }) </script> </body> </html>