初始化仓库

This commit is contained in:
tao
2025-12-18 14:11:48 +08:00
parent e96f277a68
commit 54ec472bd4
1107 changed files with 158756 additions and 0 deletions

20
plugins/index.js Normal file
View File

@@ -0,0 +1,20 @@
import tab from './tab'
import auth from './auth'
import time from './time'
import modal from './modal'
import config from './config.js'
export default {
install(Vue) {
// 页签操作
Vue.prototype.$tab = tab
// 认证对象
Vue.prototype.$auth = auth
// 时间对象
Vue.prototype.$time = time
// 模态框对象
Vue.prototype.$modal = modal
// 配置对象
Vue.prototype.$config = config
}
}