init project

This commit is contained in:
tao
2025-11-17 10:01:33 +08:00
commit 77c123408d
1018 changed files with 136951 additions and 0 deletions

15
plugins/index.js Normal file
View File

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