mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-25 16:07:19 +08:00
11 lines
196 B
TypeScript
11 lines
196 B
TypeScript
import { http } from "@/utils/http";
|
|
|
|
type Result = {
|
|
success: boolean;
|
|
data: Array<any>;
|
|
};
|
|
|
|
export const getAsyncRoutes = () => {
|
|
return http.request<Result>("get", "/getAsyncRoutes");
|
|
};
|