13
0

Merge pull request 'update router mode' (#23) from lb into test

Reviewed-on: #23
Este cometimento está contido em:
2023-09-13 12:28:57 +08:00
ascendente 2c6a6b001c f341ec7b30
cometimento f08c79fc23

Ver ficheiro

@@ -247,7 +247,7 @@ Router.prototype.push = function push(location) {
export default new Router({ export default new Router({
base: process.env.VUE_APP_APP_NAME ? process.env.VUE_APP_APP_NAME : "/", base: process.env.VUE_APP_APP_NAME ? process.env.VUE_APP_APP_NAME : "/",
mode: 'history', // 去掉url中的# mode: 'hash', // 去掉url中的#
scrollBehavior: () => ({y: 0}), scrollBehavior: () => ({y: 0}),
routes: constantRoutes routes: constantRoutes
}) })