01、main.js程式碼如下:
// 引入createApp用於建立Vue例項 import {createApp} from 'vue' // 引入App.vue根元件 import App from './App.vue' //引入路由 import router from './router' const app = createApp(App); //使用路由 app.use(router); // App.vue的根元素id為app app.mount('#app')
02、index.ts程式碼如下:
//建立路由並暴露出去 import {createRouter, createWebHistory} from 'vue-router' import Home from '@/view/Home.vue' import About from '@/view/About.vue' import News from '@/view/News.vue' import Detail from '@/view/Detail.vue' const router = createRouter({ history: createWebHistory(), routes: [ {name: 'zhuye', path: '/home', component: Home}, {name: 'guanyu', path: '/about', component: About}, { name: 'xinwen', path: '/news', component: News, //子類的path不需要加斜槓 children: [ {path: 'detail', component: Detail}, ] }, ] }) export default router
03、App.vue程式碼如下:
<template> <div class="app"> <h2 class="title">App.Vue路由測試</h2> <Header></Header> <!-- 導航區--> <div class="navigate"> <!-- 第一種寫法--> <!-- <router-link to="/Home" class="nav-button">首頁</router-link>--> <!-- <router-link to="/news" class="nav-button">新聞</router-link>--> <!-- <router-link to="/about" class="nav-button">關於</router-link>--> <!-- 第二種寫法,可以透過name和path--> <router-link :to="{name:'zhuye'}" class="nav-button">首頁</router-link> <router-link :to="{name:'xinwen'}" class="nav-button">新聞</router-link> <router-link :to="{path:'/about'}" class="nav-button">關於</router-link> </div> <!-- 內容區--> <div class="mai-content"> <RouterView></RouterView> </div> </div> </template> <script lang="ts" setup name="App"> // 介面會根據當前路由的變化,在RouterView所在的位置渲染不同的元件 import {RouterView} from 'vue-router' import Header from './components/Header.vue' </script> <style scoped> .app { background-color: #ddd; box-shadow: 0 0 10px; border-radius: 10px; padding: 20px; } .nav-button { display: inline-block; /* 讓連結顯示為塊級元素,以便應用寬度和高度 */ padding: 10px 20px; /* 內邊距 */ margin: 0 5px; /* 外邊距,用於按鈕之間的間隔 */ text-decoration: none; /* 移除下劃線 */ color: white; /* 文字顏色 */ background-color: #007bff; /* 背景顏色 */ border-radius: 5px; /* 邊框圓角 */ transition: background-color 0.3s; /* 平滑過渡效果 */ } .nav-button:hover { background-color: #0056b3; /* 滑鼠懸停時的背景顏色 */ } .nav-button.router-link-active { background-color: #28a745; /* 當前啟用(路由匹配)時的背景顏色 */ } .mai-content { /* 新增邊框樣式 */ border: 2px solid #000; /* 邊框寬度、樣式和顏色 */ border-radius: 5px; /* 可選:新增邊框圓角 */ padding: 20px; /* 可選:給內部內容新增一些內邊距 */ margin: 20px; /* 可選:給元素新增一些外邊距,以便與其他元素隔開 */ } </style>
04、Detail.vue程式碼如下:
<template> <ul class="news-list"> <li>編號:{{ route.query.id }}</li> <li>編號:{{ route.query.title }}</li> <li>編號:{{ route.query.content }}</li> </ul> </template> <script setup lang="ts" name="home"> import {useRoute} from 'vue-router' let route = useRoute() console.log('@', route) </script> <style scoped> .news-list { /* 新增邊框樣式 */ border: 2px solid #000; /* 邊框寬度、樣式和顏色 */ border-radius: 5px; /* 可選:新增邊框圓角 */ padding: 20px; /* 可選:給內部內容新增一些內邊距 */ margin: 20px; /* 可選:給元素新增一些外邊距,以便與其他元素隔開 */ } </style>
05、New.vue程式碼如下:
<template> <div class="app-container"> <!-- 導航區域容器 --> <div class="sidebar"> <ul class="news-list"> <li v-for="news in newsList" :key="news.id"> <!--第一種拼接字串寫法--> <router-link :to="`/news/detail?id=${news.id}&title=${news.title}&content=${news.content}`"> {{ news.title }} </router-link> <!--第二種query寫法--> <router-link :to="{ path: '/news/detail', query: {id: news.id, title: news.title, content: news.content }}"> {{ news.title }} </router-link> </li> </ul> </div> <!-- 內容區域容器 --> <div class="main-content"> <RouterView></RouterView> </div> </div> </template> <script setup lang="ts" name="news"> import {reactive} from "vue"; import {RouterLink, RouterView} from "vue-router"; const newsList = reactive([ {id: 1, title: '新聞1', content: '內容1'}, {id: 2, title: '新聞2', content: '內容2'}, {id: 3, title: '新聞3', content: '內容3'}, {id: 4, title: '新聞4', content: '內容4'}, {id: 5, title: '新聞5', content: '內容5'}, ]) </script> <style scoped> .app-container { display: flex; /* 使用Flexbox佈局 */ } .sidebar { width: 150px; /* 導航欄寬度 */ padding: 20px; box-sizing: border-box; /* 防止padding影響元素總寬度 */ } .news-list { list-style-type: none; padding: 0; } .news-list li { margin-bottom: 10px; /*每一條間距*/ } .main-content { flex-grow: 1; /* 內容區域佔據剩餘空間 */ padding: 20px; overflow-y: auto; /* 如果內容過多,允許垂直滾動 */ } </style>
06、About.vue程式碼如下:
<template> <div class="about"> <h2>我是About頁面</h2> </div> </template> <script setup lang="ts" name="about"> </script> <style scoped> </style>
07、Home.vue程式碼如下:
<template> <div class="home"> <h2>我是Home頁面</h2> </div> </template> <script setup lang="ts" name="home"> </script> <style scoped> </style>
08、Header.vue程式碼如下:
<template class="hop-head"> <h2 class="title">Vue路由測試header</h2> </template> <script setup lang="ts" name="hop-head"> import {onMounted, onUnmounted} from 'vue' onMounted(() => { console.log('header元件被掛載') }) onUnmounted(() => { console.log('header元件被解除安裝') }) </script> <style scoped> .title { text-align: center; word-spacing: 5px; margin: 50px 0; height: 70px; line-height: 70px; background-image: linear-gradient(45deg, gray, white); border-radius: 15px; box-shadow: 0 0 10px; font-size: 20px; } </style>
09、效果如下:
10、效果如下: