Files
ruoyi-vue/src/plugins/index.js
2025-08-31 15:29:05 +08:00

24 lines
576 B
JavaScript

import tab from './tab'
import auth from './auth'
import cache from './cache'
import modal from './modal'
import download from './download'
import request from '@/utils/request'
export default {
install(Vue) {
// 页签操作
Vue.prototype.$tab = tab
// 认证对象
Vue.prototype.$auth = auth
// 缓存对象
Vue.prototype.$cache = cache
// 模态框对象
Vue.prototype.$modal = modal
// 下载文件
Vue.prototype.$download = download
// 全局请求实例(供 this.$axios 使用)
Vue.prototype.$axios = request
}
}