vue路由去掉#
1、 去掉#号就是 history
2、 带着#号就是 hash
export default new Router({
mode: "history",
scrollBehavior: () => ({ y: 0 }),
routes: constantRoutes,
});
1、 去掉#号就是 history
2、 带着#号就是 hash
export default new Router({
mode: "history",
scrollBehavior: () => ({ y: 0 }),
routes: constantRoutes,
});