恢复内容开始 路由跳转有两种方式: 1.通过params属性传值,该方法在跳转页面刷新时数据会丢失 methods: { /** * 跳转子菜单 */ goSub (param) { this.click = true this.$router.push({ // path: `/${url}` n ...
分类:
其他好文 时间:
2021-06-11 18:52:07
阅读次数:
0
指南: https://router.vuejs.org/zh/guide/essentials/dynamic-matching.html#%E5%93%8D%E5%BA%94%E8%B7%AF%E7%94%B1%E5%8F%82%E6%95%B0%E7%9A%84%E5%8F%98%E5%8C% ...
分类:
其他好文 时间:
2021-06-10 18:18:38
阅读次数:
0
1.路由 安装 npm i react-router-dom --save 模式 HashRouter BrowserRouter import {HashRouter,BrowserRouter} from "react-router-dom" ReactDOM.render( <HashRout ...
分类:
其他好文 时间:
2021-06-10 18:01:46
阅读次数:
0
Vite2.x + Vue3.x + Xtermjs4 相关信息 编程语言:TypeScript 4.x + JavaScript 构建工具:Vite 2.x 前端框架:Vue 3.x 路由工具:Vue Router 4.x 状态管理:Vuex 4.x UI 框架:Element Plus CSS ...
分类:
Web程序 时间:
2021-06-09 10:33:40
阅读次数:
0
本窗口打开: 传参: this.$router.push({ name: 'info-detail', params: {id: id}}) 取参: this.$route.params.id 新窗口打开 传参: window.open(this.$router.resolve({ path: 'i ...
分类:
其他好文 时间:
2021-06-08 23:19:17
阅读次数:
0
1.场景在处理列表时,常常有删除一条数据或者新增数据之后需要重新刷新当前页面的需求。 2.遇到的问题1. 用vue-router重新路由到当前页面,页面是不进行刷新的 2.采用window.reload(),或者router.go(0)刷新时,整个浏览器进行了重新加载,闪烁,体验不好 3.解决方法p ...
分类:
其他好文 时间:
2021-06-08 22:38:07
阅读次数:
0
按照官方设置写的路由,卡在了Cannot read property 'matched' of undefined这个错误问题,查了很多资料才知道,有两上命名是不能改动的,route与router; 在目录新建了文件router.js import Vue from 'vue' import vue ...
分类:
其他好文 时间:
2021-06-07 20:35:33
阅读次数:
0
####出现错误 提示信息: router.beforeEach((to, from, next) => { if (!storage.getItem('userInfo')) { console.log('error') next({ path: '/login' }) } else { cons ...
分类:
其他好文 时间:
2021-06-06 19:32:40
阅读次数:
0
1.路由传值: 传值:this.$router.push({ path: '/a', query: { id:1, age:18 } }) //如点击时触发 接收:this.$route.query.id || this.$route.query.age 2.父组件找子组件拿值及其方法: 父: im ...
分类:
其他好文 时间:
2021-06-04 19:08:41
阅读次数:
0
一、什么是导航 导航就是路由正在发生变化 二、导航守卫、路由守卫、路由的钩子函数 路由发生变化时自动触发的一些函数 三、守卫有哪些 全局守卫(通过new Router出来的实例进行使用,在router/index.js中进行使用) 全局前置守卫:beforeEach() beforeEach((to ...
分类:
其他好文 时间:
2021-06-04 19:03:33
阅读次数:
0