038、Vue3+TypeScript基礎,使用router.push進行路由跳轉並傳參

像一棵海草海草海草發表於2024-08-20

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: [
                {
                    // 一定要使用name
                    name: 'neirong',
                    path: 'detail',
                    component: Detail,
                    props(route) {
                        return route.query
                    },
                },
            ]
        },
    ]
})

export default router

03、App.vue程式碼如下:

<template>
  <div class="app">
    <h2 class="title">App.Vue路由測試</h2>
    <Header></Header>
    <!-- 導航區-->
    <div class="navigate">
      <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、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>

05、News.vue程式碼如下:

<template>
  <div class="app-container">
    <!-- 導航區域容器 -->
    <div class="sidebar">
      <ul class="news-list">
        <!--第三種寫法-->
        <li v-for="news in newsList" :key="news.id">
          <button @click="showNewsDetail(news)">檢視新聞</button>
          <router-link :to="{
            name: 'neirong',
            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, useRouter} from "vue-router";

const newsList = reactive([
  {id: 1, title: '新聞1', content: '內容1'},
  {id: 2, title: '新聞2', content: '內容2'},
  {id: 3, title: '新聞3', content: '內容3'},
])

interface NewsInster {
  id: string;
  title: string;
  content: string;
}

const router = useRouter();

function showNewsDetail(news: NewsInster) {
  console.log(news);
  router.push({
    name: 'neirong',
    query: {
      id: news.id,
      title: news.title,
      // 就算路由不寫這個引數,也可以正常跳轉,因為路由帶個問號
      content: news.content
    }
  })
}
</script>

<style scoped>
.app-container {
  display: flex; /* 使用Flexbox佈局 */
}

.sidebar {
  width: 180px; /* 導航欄寬度 */
  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、Detail.vue程式碼如下:

<template>
  <ul class="news-list">
    <li>編號:{{ id }}</li>
    <li>編號:{{ title }}</li>
    <li>編號:{{ content }}</li>
  </ul>
</template>

<script setup lang="ts" name="home">
defineProps(['id', 'title', 'content'])
</script>

<style scoped>
.news-list {
  /* 新增邊框樣式 */
  border: 2px solid #000; /* 邊框寬度、樣式和顏色 */
  border-radius: 5px; /* 可選:新增邊框圓角 */
  padding: 20px; /* 可選:給內部內容新增一些內邊距 */
  margin: 20px; /* 可選:給元素新增一些外邊距,以便與其他元素隔開 */
}
</style>

08、Home.vue程式碼如下:

<template>
  <div class="home">
    <h2>我是Home頁面</h2>
  </div>
</template>

<script setup lang="ts" name="home">
</script>

<style scoped>
</style>

09、效果如下、點選之後,可以跳轉。

相關文章