createWebHistory路由模式路徑不帶#號(生產環境下不能直接訪問項目,需要nginx轉發)
http://localhost:8080/#/
const router = createRouter({ history: createWebHistory(), routes});
createWebHashHistory路由模式路徑帶#號
http://localhost:8080/
const router = createRouter({ history: createWebHashHistory(), routes});