logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue3 中访问不存在路由默认跳转404页面实现方法

vue3报错 Catch all routes ("*") must now be defined using a param with a custom regexpvue2里可以直接在路由配置如下:{path: '*',name: '/404',component: NotFound}vue3对404配置进行了修改,的必须要使用正则匹配:{path: '/:pathMatch(.*)',//访

#前端#中间件#vue.js
vue2中路由跳转页面 this.$router.push() 的用法

作用:this.$router.push() 可以通过修改url实现路由跳转。注:push 后面可以是对象,也可以是字符串:1、字符串this.$router.push('/home/first')2、对象this.$router.push({ path: '/home/first' })3、命名的路由this.$router.push({ name: 'home', params: { user

#前端#vue.js#javascript
到底了