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.

21 lines
449B

  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 {
  7. install(Vue) {
  8. // 页签操作
  9. Vue.prototype.$tab = tab
  10. // 认证对象
  11. Vue.prototype.$auth = auth
  12. // 缓存对象
  13. Vue.prototype.$cache = cache
  14. // 模态框对象
  15. Vue.prototype.$modal = modal
  16. // 下载文件
  17. Vue.prototype.$download = download
  18. }
  19. }