6 lines
148 B
TypeScript
Raw Normal View History

2021-10-16 16:16:58 +08:00
import { http } from "/@/utils/http";
export const getAsyncRoutes = (data?: object) => {
return http.request("get", "/getAsyncRoutes", data);
};