mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2026-02-13 17:30:27 +08:00
12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
import { http } from "@/utils/http";
|
|
|
|
type Result = {
|
|
code: number;
|
|
message: string;
|
|
data: Array<any>;
|
|
};
|
|
|
|
export const getAsyncRoutes = () => {
|
|
return http.request<Result>("get", "/get-async-routes");
|
|
};
|