vue项目上线后在地址栏进行路由跳转出现错误页面,无法正确跳转


提示:本文主要介绍遇到vue3项目上线后路由跳转出现错误页面,无法正确跳转的解决方案

解决方法:

更改路由的跳转方式为hash模式:
在router/index.js下添加:

import { createRouter, createWebHashHistory  } from 'vue-router'

并修改原来的History模式

const router = createRouter({
  history: createWebHistory(process.env.BASE_URL),
  routes
})

为hash模式

const router = createRouter({
  history: createWebHashHistory(),
  routes
})

提示:文章到此结束,本文仅为个人看法,若有不足欢迎各位指出。
Logo

前往低代码交流专区

更多推荐