6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
import { http } from "/@/utils/http";
|
|
|
|
export const getAsyncRoutes = (data?: object) => {
|
|
return http.request("get", "/getAsyncRoutes", data);
|
|
};
|