码迷,mamicode.com
首页 > 其他好文 > 详细

VUE3.0 路由去掉#号

时间:2021-02-02 11:14:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:class   color   col   http   const   code   style   pre   不能   

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

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

createWebHashHistory路由模式路径带#号

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

 

VUE3.0 路由去掉#号

标签:class   color   col   http   const   code   style   pre   不能   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!