index.ts 542 B

123456789101112131415161718
  1. import tab from './tab';
  2. import auth from './auth';
  3. import cache from './cache';
  4. import modal from './modal';
  5. import download from './download';
  6. export default function installPlugins(app: any) {
  7. // 页签操作
  8. app.config.globalProperties.$tab = tab;
  9. // 认证对象
  10. app.config.globalProperties.$auth = auth;
  11. // 缓存对象
  12. app.config.globalProperties.$cache = cache;
  13. // 模态框对象
  14. app.config.globalProperties.$modal = modal;
  15. // 下载文件
  16. app.config.globalProperties.$download = download;
  17. }