解决访问路径#问题
当使用vue-router时,有时候会遇到这样一个问题,路径带有/#/
解决方法,修改路由文件中的history,将其修改为createWebHistory()
const router = createRouter({
history: createWebHistory(),
routes,
})
1
2
3
4
5
2
3
4
5
这样就解决了
编辑 (opens new window)
上次更新: 2024/05/30, 07:49:34