2023-06-08 21:09:28 +08:00
|
|
|
import auth from "./auth/index"
|
|
|
|
|
import role from "./role/index"
|
|
|
|
|
import copy from "./copy/index"
|
2024-06-13 19:41:57 +08:00
|
|
|
import loading from "./loading/index"
|
2023-06-08 21:09:28 +08:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
install(Vue) {
|
|
|
|
|
Vue.directive("auth", auth)
|
|
|
|
|
Vue.directive("role", role)
|
|
|
|
|
Vue.directive("copy", copy)
|
2024-06-13 19:41:57 +08:00
|
|
|
Vue.directive("loading", loading)
|
2023-06-08 21:09:28 +08:00
|
|
|
}
|
|
|
|
|
}
|