欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

VUE3.0 路由(routes) createWebHistory和createWebHashHistory 有大用

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

http://localhost:8080/#/

1
const router = createRouter({  history: createWebHistory(),  routes});

createWebHashHistory路由模式路径带#号

http://localhost:8080/

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


来自  https://www.cnblogs.com/LuoCore/p/15399036.html

来自  https://www.jianshu.com/p/816379b1f45a


普通分类: