vue3 生产环境 刷新404

createWebHistory 生产环境下不带#

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

createWebHashHistory路由模式路径带#号

const router = createRouter({
  history: createWebHashHistory(),
  routes
});
 
posted @ 2021-06-12 16:07  ___mouM  阅读(577)  评论(0编辑  收藏  举报