111
k94314517
2023-11-08 2bb847e3b8bdc2692d88ad9df0d4ad54a3ccd890
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import consts from './consts'
import message from './message'
import messagebox from './messagebox'
import cache from './cache'
import download from './download'
export default {
  install (Vue) {
    // 常量
    Vue.prototype.$consts = consts
    // 提醒对象
    Vue.prototype.$tip = message
    // 提示框对象
    Vue.prototype.$dialog = messagebox
    // 缓存对象
    Vue.prototype.$cache = cache
    // 下载文件
    Vue.prototype.download = download
  }
}