index.js 393 B

1234567891011121314151617
  1. import auth from './auth'
  2. import cache from './cache'
  3. import modal from './modal'
  4. import download from './download'
  5. export default {
  6. install(Vue) {
  7. // 认证对象
  8. Vue.prototype.$auth = auth
  9. // 缓存对象
  10. Vue.prototype.$cache = cache
  11. // 模态框对象
  12. Vue.prototype.$modal = modal
  13. // 下载文件
  14. Vue.prototype.$download = download
  15. }
  16. }