createWebHistory路由模式路徑不帶#號(生產(chǎn)環(huán)境下不能直接訪問項(xiàng)目堂湖,需要nginx轉(zhuǎn)發(fā))
const router = createRouter({
history: createWebHistory(),
routes
});
createWebHashHistory路由模式路徑帶#號
const router = createRouter({
history: createWebHashHistory(),
routes
});