You've already forked template-MP
16 lines
325 B
JavaScript
16 lines
325 B
JavaScript
/**
|
|
* API统一导出入口
|
|
*/
|
|
// 导入网络请求实例
|
|
import http from './request.js'
|
|
// 导入各业务模块
|
|
import user from './modules/user.js'
|
|
// 导出网络请求实例
|
|
export { http }
|
|
// 导出各业务模块
|
|
export { user }
|
|
// 默认导出包含所有模块的对象
|
|
export default {
|
|
user,
|
|
}
|