This commit is contained in:
2026-04-28 00:08:04 +08:00
commit 26dba79969
363 changed files with 47846 additions and 0 deletions

12
plugins/index.js Normal file
View File

@@ -0,0 +1,12 @@
import tab from './tab'
import auth from './auth'
import modal from './modal'
export function install(app) {
// 页签操作
app.config.globalProperties.$tab = tab
// 认证对象
app.config.globalProperties.$auth = auth
// 模态框对象
app.config.globalProperties.$modal = modal
}