This commit is contained in:
2023-06-08 21:09:28 +08:00
parent d778ceab61
commit f8947d332a
158 changed files with 17210 additions and 259 deletions

View File

@@ -0,0 +1,11 @@
import auth from "./auth/index"
import role from "./role/index"
import copy from "./copy/index"
export default {
install(Vue) {
Vue.directive("auth", auth)
Vue.directive("role", role)
Vue.directive("copy", copy)
}
}