You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
495 B

// 引入 User 模块
import User from "./http.user.api.js";
import Duty from "../common/api/http.duty.api.js";
import Address from "./api/http.address.api.js";
import Goods from "./api/https.goods.api.js";
import Pay from "./api/https.pay.api.js";
import DingDan from "./api/http.dingdan.api.js";
const install = (Vue, vm) => {
vm.$u.api = {
Duty:Duty(vm),
Goods:Goods(vm),
DingDan:DingDan(vm),
Pay:Pay(vm),
Address:Address(vm),
User:User(vm),
};
}
export default {
install
}