现在我有多个api文件, 如下
a.ts
import { GET } from "@/utils/http";
const NORMAL = "/__normal__";
export const loadMenus = () =>
GET(`${NORMAL}/user/v1/modules?page=home&module=top_menu&role=`);
b.ts
import { GET, POST } from "@/utils/http";
const NORMAL = "/__normal__";
export const login = (params: any) => POST(`${NORMAL}/user/v1/account/login`, params);
然后在
index.ts
import * as commonApi from "./common";
import * as accountApi from "./account";
export default {
...commonApi,
...accountApi
}
使用时
import Api from "@/api/index";
Api.loadMenus();
我想要实现的是在使用时
import { loadMenus } from "@/api/index";
loadMenus();
这样的话我该怎么处理,
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…