Vue-router路由
1.基本使用
1.安装vue-router, 命令:npm i vue-router
2.应用插件:Vue.use(VueRouter)
3.编写router配置项:
// 该文件专门用于创建整个应用的路由器
import VueRouter from "vue-router";
// 引入组件
import About from "../components/About.vue";
import Home from "../components/Home.vue";
// 创建一个并暴露一个路由器
export default new VueRouter({
routes: [
{
path: "/about",
component: About,
},
{
path: "/home",
component: Home,
},
],
});
4.实现切换(active-class可配置高亮样式)
<router-link class="list-group-item" active-class="active" to="/about"\>About</router-link \>
5.指定呈现位置:<router-view></router-view>
2.几个注意点
1.路由组件通常存放在pages文件夹,一般组件通常存放在components文件夹
2.通过切换,"隐藏"了的路由组件,默认是被销毁的,需要的时候再去挂载
3.每个组件都有自己的$route,里面存储着自己的路由信息
4.整个应用只有一个router,可以通过组件的$router属性获取到
3.多级(嵌套)路由
1.配置路由规则,使用children配置项:
// 该文件专门用于创建整个应用的路由器
import VueRouter from "vue-router";
// 引入组件 .vue后缀名可写可不写
import About from "../pages/About.vue";
import Home from "../pages/Home.vue";
import Message from "../pages/Message.vue";
import News from "../pages/News.vue";
// 创建一个并暴露一个路由器
export default new VueRouter({
routes: [
{
path: "/", //默认显示的组件
component: About,
},
{
path: "/about",
component: About,
},
{
path: "/home",
component: Home,
// 一级路由的path需要加/,它的子路由不需要加/
children: [
{
path: "message",
component: Message,
},
{
path: "news",
component: News,
},
],
},
],
});
2.跳转(要写完整路径):
<router-linkclass="list-group-item"active-class="active"to="/home/message"\>Message</router-link\>
4.路由的query参数
1.传递参数
<li v-for="item of messageList" :key="item.id">
<!-- 跳转路由并携带query参数,to的字符串写法 -->
<!-- <router-link :to="`/home/message/detail?id=${item.id}&title=${item.title}`">{{ item.title }} </router-link> -->
<!-- 跳转路由并携带query参数,to的对象写法 外面大对象必须用双引号,里面的path路径必须用单引号-->
<router-link
:to="{
path: '/home/message/detail',
query: { id: item.id, title: item.title },
}"
>{{ item.title }}</router-link
>
</li>
2.接收参数:
$route.query.id
$route.query.title
5.命名路由
-
作用:可以简化路由的跳转。
-
如何使用
-
给路由命名:
{
path:'/demo',
component:Demo,
children:[
{
path:'test',
component:Test,
children:[
{
name:'hello' //给路由命名
path:'welcome',
component:Hello,
}
]
}
]
} -
简化跳转:
<!--简化前,需要写完整的路径 -->
<router-link to="/demo/test/welcome">跳转</router-link>
<!--简化后,直接通过名字跳转 -->
<router-link :to="{name:'hello'}">跳转</router-link>
<!--简化写法配合传递参数 -->
<router-link
:to="{
name:'hello',
query:{
id:666,
title:'你好'
}
}"
>跳转</router-link>
-
6.路由的params参数
-
配置路由,声明接收params参数
{
path:'/home',
component:Home,
children:[
{
path:'news',
component:News
},
{
component:Message,
children:[
{
name:'xiangqing',
path:'detail/:id/:title', //使用占位符声明接收params参数
component:Detail
}
]
}
]
} -
传递参数
<!-- 跳转并携带params参数,to的字符串写法 -->
<router-link :to="/home/message/detail/666/你好">跳转</router-link>
<!-- 跳转并携带params参数,to的对象写法 -->
<router-link
:to="{
name:'xiangqing',
params:{
id:666,
title:'你好'
}
}"
>跳转</router-link>特别注意:路由携带params参数时,若使用to的对象写法,则不能使用path配置项,必须使用name配置!
-
接收参数:
$route.params.id
$route.params.title
7.路由的props配置
作用:让路由组件更方便的收到参数
{
name:'xiangqing',
path:'detail/:id',
component:Detail,
//第一种写法:props值为对象,该对象中所有的key-value的组合最终都会通过props传给Detail组件
// props:{a:900}
//第二种写法:props值为布尔值,布尔值为true,则把路由收到的所有params参数通过props传给Detail组件
// props:true
//第三种写法:props值为函数,该函数返回的对象中每一组key-value都会通过props传给Detail组件
props(route){
return {
id:route.query.id,
title:route.query.title
}
}
}
8.<router-link>
的replace属性
-
作用:控制路由跳转时操作浏览器历史记录的模式(补充:浏览器的地址模式是栈结构,一端封死,一端打开)
-
浏览器的历史记录有两种写入方式:分别为
push
和replace
,push
是追加历史记录,replace
是替换当前记录。路由跳转时候默认为push
-
如何开启
replace
模式:<router-link replace .......>News</router-link>