懒羊羊
2024-01-31 e57a8990ae56f657a59c435a0613c5f7a8728003
提交 | 用户 | 时间
e57a89 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
7 export default {
8   install(Vue) {
9     // 页签操作
10     Vue.prototype.$tab = tab
11     // 认证对象
12     Vue.prototype.$auth = auth
13     // 缓存对象
14     Vue.prototype.$cache = cache
15     // 模态框对象
16     Vue.prototype.$modal = modal
17     // 下载文件
18     Vue.prototype.$download = download
19   }
20 }