mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
import { http } from "../utils/http";
|
|
|
|
export const getAsyncRoutes = (data?: object): any => {
|
|
return http.request("get", "/getAsyncRoutes", data);
|
|
};
|