混凝土运输管理微信小程序、替班
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.

19 lines
598 B

1 week ago
  1. import http from './http.js'
  2. import util from './utils.js'
  3. import time from './timeUtils.js'
  4. import storage from './storage.js'
  5. const plugins = {
  6. install(app) {
  7. app.config.globalProperties.$http = http.http
  8. app.config.globalProperties.$httpGet = http.get
  9. app.config.globalProperties.$httpPost = http.post
  10. app.config.globalProperties.$httpDelete = http.delete
  11. app.config.globalProperties.$httpSync = http.syncHttp
  12. app.config.globalProperties.$timeUtils = time
  13. app.config.globalProperties.$utils = util
  14. app.config.globalProperties.$storage = storage
  15. }
  16. }
  17. export default plugins;