2025-08-14 15:04:24 +08:00
|
|
|
import tab from './tab'
|
|
|
|
|
import auth from './auth'
|
|
|
|
|
import modal from './modal'
|
2026-07-28 13:35:23 +08:00
|
|
|
import image from '@/utils/image'
|
2025-08-14 15:04:24 +08:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
install(Vue) {
|
|
|
|
|
// 页签操作
|
|
|
|
|
Vue.prototype.$tab = tab
|
|
|
|
|
// 认证对象
|
|
|
|
|
Vue.prototype.$auth = auth
|
|
|
|
|
// 模态框对象
|
|
|
|
|
Vue.prototype.$modal = modal
|
2026-07-28 13:35:23 +08:00
|
|
|
// CDN image normalization and responsive thumbnail helpers
|
|
|
|
|
Vue.prototype.$image = image
|
2025-08-14 15:04:24 +08:00
|
|
|
}
|
|
|
|
|
}
|