This commit is contained in:
fz
2023-09-05 16:14:07 +08:00
parent 3004bd234a
commit fa8c21a1fc
510 changed files with 40385 additions and 28169 deletions
+14
View File
@@ -0,0 +1,14 @@
import tab from './tab'
import auth from './auth'
import modal from './modal'
export default {
install(Vue) {
// 页签操作
Vue.prototype.$tab = tab
// 认证对象
Vue.prototype.$auth = auth
// 模态框对象
Vue.prototype.$modal = modal
}
}