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.
shop-app/common/utils/index.js

18 lines
475 B

3 years ago
/*
* @Author: ch
* @Date: 2022-03-22 16:52:28
* @LastEditors: ch
2 years ago
* @LastEditTime: 2022-05-06 21:06:14
3 years ago
* @Description: 所有工具类统一在这输出
*/
import * as util from './utils';
import * as requset from './requset';
2 years ago
import * as websocket from './requset';
import * as wxpay from './wxpay';
3 years ago
export * from './utils';
export * from './requset';
2 years ago
export * from './websocket';
export * from './wxpay';
3 years ago
export default { ...util, ...requset, ...websocket, ...wxpay}