http://localhost:8080/#/
const router = createRouter({ history: createWebHistory(), routes });
createWebHashHistory路由模式路径带#号
http://localhost:8080/
const router = createRouter({ history: createWebHashHistory(), routes });
2023-09-25 07:52:51
http://localhost:8080/#/
const router = createRouter({ history: createWebHistory(), routes });
http://localhost:8080/
const router = createRouter({ history: createWebHashHistory(), routes });