這篇文章帶大家了解Vue3中路由,聊聊路由的基本設定、動態路由的設定、路由模式、路由重新導向等,希望對大家有幫助。
【相關推薦:《vue.js教學》】
#1、安裝外掛程式
npm install vue-router@next --save
2、建立一個routers.ts檔案
3、在routers.ts中引入元件並配置路徑。
import { createRouter,createWebHashHistory } from 'vue-router'; // 引入组件 import Home from './components/Home.vue'; import News from './components/News.vue'; import User from './components/User.vue'; const router = createRouter({ history: createWebHashHistory(), routes: [ {path: '/', component: Home}, {path: '/news', component: News}, {path: '/user', component: User}, ] }) export default router;
4、在main.ts中將路由檔案掛載到vue身上。
import { createApp } from 'vue' import App from './App.vue' import routers from './routers'; // createApp(App).mount('#app') const app = createApp(App); app.use(routers); app.mount('#app');
5、用到路由的元件通過router-view元件或router-link
<template> <img alt="Vue logo" src="./assets/logo.png"> <ul> <li> <router-link to="/">首页</router-link> </li> <li> <router-link to="/news">新闻</router-link> </li> <li> <router-link to="/user">用户</router-link> </li> </ul> <router-view></router-view> </template>
掛載router-link後,只需要在元件對應的頁面路徑上輸入指定路由即可完成跳轉,router-link則實現a標籤進行跳轉的形式路由。
在routes.ts中依照下面的方式進行設定路由,透過/:aid的方式來進行動態路由的設定。
//配置路由 const router = createRouter({ history: createWebHashHistory(), routes: [ { path: '/', component: Home , alias: '/home' }, { path: '/news', component: News }, { path: '/user', component: User }, { path: '/newscontent/:aid', component: NewsContent }, ], })
透過router-link進行跳轉的時候,需要模板字串和冒號+to。
<ul> <li v-for="(item, index) in list" :key="index"> <router-link :to="`/newscontent/${index}`"> {{item}}</router-link> </li> </ul>
透過this.$route.params取得動態路由傳過來的值。
mounted(){ // this.$route.params 获取动态路由的传值 console.log(this.$route.params) }
如果我們想要實作類似與GET傳值,我們可以透過下面的方式
1、將路由配置為普通路由。
const router = createRouter({ history: createWebHashHistory(), routes: [ { path: '/', component: Home , alias: '/home' }, { path: '/news', component: News }, { path: '/user', component: User }, { path: '/newscontent', component: NewsContent }, ], })
2、router-link透過問號的形式進行跳躍。
<router-link :to="`/newscontent?aid=${index}`"> {{item}}</router-link>
3、透過this.$route.query取得到get傳值。
console.log(this.$route.query);
只需要透過this.$router.push進行指定即可。
this.$router.push({ path: '/home' })
如果想要實作get傳值,可以透過下列的方式。
this.$router.push({ path: '/home', query: {aid: 14} }) }
動態路由需要使用下面的這種方式。
this.$router.push({ path: '/home/123', // query: {aid: 14} })
#Hash模式的典型特點是頁面路由中含有一個井號。
const router = createRouter({ history: createWebHashHistory(), routes: [ ..., ], })
#引入createWebHistory。
router的設定項目中的history屬性設定為createWebHistory()。
import { createRouter, createWebHistory } from 'vue-router' //配置路由 const router = createRouter({ history: createWebHistory(), routes: [ ... ], })
注意:開啟HTML5 History模式之後,發佈到伺服器需要設定偽靜態。
配置偽靜態的方法:
https://router.vuejs.org/zh/guide/essentials/history-mode.html#後端設定範例
#定義路由的時候設定name屬性
{ path: '/news', component: News,name:"news" }
<router-link :to="{name: 'news'}">新闻</router-link>
{ path: '/newscontent', component: NewsContent, name: "content" },
<li v-for="(item, index) in list" :key="index"> <router-link :to="{name: 'content',query: {aid: index}}"> {{item}}</router-link> </li>
{ path: '/userinfo/:id', name: "userinfo", component: UserInfo }
<router-link :to="{name: 'userinfo',params: {id: 123}}">跳转到用户详情</router-link>
路由別名<button @click="this.$router.push({name: 'userinfo',params: {id: 666}})">点击跳转</button>路由重定向
{ path: '', redirect: "/home" }, // 路由重定向 { path: '/home', component: Home },
{ path: '/user', component: User, alias: '/people' }alias也可以是一個陣列。
{ path: '/user', component: User, alias: ['/people','/u']}動態路由的形式。
{ path: '/userinfo/:id', name: "userinfo", component: UserInfo, alias: '/u/:id' }巢狀路由
定義巢狀路由
{ path: '/user', component: User, children: [ { path: '', redirect: "/user/userlist" }, { path: 'userlist', component: UserList }, { path: 'useradd', component: UserAdd } ] }
<div class="left"> <ul> <li> <router-link to="/user/userlist">用户列表</router-link> </li> <li> <router-link to="/user/useradd">增加用户</router-link> </li> </ul> </div> <div class="right"> <router-view></router-view> </div>更多程式相關知識,請造訪:
以上是聊聊Vue3中路由,淺析路由配置方式的詳細內容。更多資訊請關注PHP中文網其他相關文章!