npm i vue-router -S
//引入 import router from './router' //使用 - 链式 app.use(router).mount('#app')
属性 | 说明 |
---|---|
history | createWebHistory:大多 WEB 应用使用的模式,SEO 优化好;需要正确配置服务器
createWebHashHistory:基于 hash;SEO 优化体现一般;无须额外配置服务器 |
routes | 路由列表;详细配置属性使用见下表 |
linkActiveClass
linkExactActiveClass |
路由匹配样式
严格路由匹配样式 |
http://localhost:5173/
import { createRouter, createWebHistory } from 'vue-router' const router = createRouter({ history: createWebHistory(import.meta.env.BASE_URL), // })
http://localhost:5173/#/
import { createRouter, createWebHashHistory } from 'vue-router' const router = createRouter({ history: createWebHashHistory(import.meta.env.BASE_URL), // })
属性 | 说明 |
---|---|
path | 路由;必填 |
component | 对应路由的组件;必填 |
name | 命名路由:通过名字来指定路由;不能重复;更直观、灵活,简化路由使用,如动态路由 |
redirect | 重定向路由:让指定的路由重新定位到另外一个路由 |
children | 嵌套路由、子路由;嵌套路由通常需要使用重定向 |
props | 是否启用路由参数;可以接收动态路由参数和查询路由参数 |
meta | 路由元信息:用于路由组件的额外配置;无法在编程式路由中定义或覆盖 |
beforeEnter | 路由独享的守卫 |
import HomeView from "@/views/HomeView.vue"; import TeamView from "@/views/TeamView.vue"; const routes = [ { path: '/', component: HomeView }, { path: '/team', component: TeamView }, ]
const routes = [ { path: '/', component: () => import("../views/TeamView.vue") }, { path: '/about', component: () => import("../views/HomeView.vue") }, ]
export const routes = [ { path: "/", name: "home", component: () => import("@/views/HomeView.vue"), }, // ... ];
import { routes } from "../assets/routes";
export default [ { path: "/", name: "home", component: () => import("@/views/HomeView.vue"), }, // ... ];
import routes from "../assets/routes";
创建路由的关键字段
.path
.component