首页 > 其他 > 详细

VUE3.0 路由去掉#号

时间:2021-02-01 21:46:53      阅读:365      评论:0      收藏:0      [点我收藏+]

createWebHistory路由模式路径不带#号(生产环境下不能直接访问项目,需要nginx转发)

http://localhost:8080/#/
const router = createRouter({
  history: createWebHistory(),
  routes
});

createWebHashHistory路由模式路径带#号

http://localhost:8080/
const router = createRouter({
  history: createWebHashHistory(),
  routes
});

 

VUE3.0 路由去掉#号

原文:https://www.cnblogs.com/laijinquan/p/14358465.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!