Vue-router路由
2021/12/19 6:20:27
本文主要是介绍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>
这篇关于Vue-router路由的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16Vue3资料:新手入门必读教程
- 2024-11-16Vue3资料:新手入门全面指南
- 2024-11-16Vue资料:新手入门完全指南
- 2024-11-16Vue项目实战:新手入门指南
- 2024-11-16React Hooks之useEffect案例详解
- 2024-11-16useRef案例详解:React中的useRef使用教程
- 2024-11-16React Hooks之useState案例详解
- 2024-11-16Vue入门指南:从零开始搭建第一个Vue项目
- 2024-11-16Vue3学习:新手入门教程与实践指南
- 2024-11-16Vue3学习:从入门到初级实战教程