RuoYi-App 1.0.0

This commit is contained in:
RuoYi
2022-08-01 08:14:57 +08:00
parent 766bf58c8b
commit 0ca2bd20b8
349 changed files with 43898 additions and 0 deletions

14
plugins/index.js Normal file
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
}
}