mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 15:30:25 +08:00
14 lines
309 B
TypeScript
14 lines
309 B
TypeScript
const mode = import.meta.env.VITE_ROUTER_MODE;
|
|
|
|
/**
|
|
* @description 获取不同路由模式所对应的 url
|
|
* @returns {String}
|
|
*/
|
|
export function getNowUrl() {
|
|
const url = {
|
|
hash: location.hash.substring(1),
|
|
history: location.pathname + location.search,
|
|
};
|
|
return url[mode];
|
|
}
|