http://localhost:8080/#/
const router = createRouter({
history: createWebHistory(),
routes
});
createWebHashHistory路由模式路径带#号
http://localhost:8080/
const router = createRouter({
history: createWebHashHistory(),
routes
});
http://localhost:8080/#/
const router = createRouter({
history: createWebHistory(),
routes
});
http://localhost:8080/
const router = createRouter({
history: createWebHashHistory(),
routes
});
原文:https://www.cnblogs.com/zyh2333/p/15247182.html