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