import tab from './tab' import auth from './auth' import cache from './cache' import modal from './modal' import download from './download' export default { install(Vue) { // 页ç¾æ“作 Vue.prototype.$tab = tab // 认è¯å¯¹è±¡ Vue.prototype.$auth = auth // 缓å˜å¯¹è±¡ Vue.prototype.$cache = cache // 模æ€æ¡†å¯¹è±¡ Vue.prototype.$modal = modal // 下载文件 Vue.prototype.$download = download } }