index.js 299 B

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