12 lines
249 B
JavaScript
12 lines
249 B
JavaScript
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)
|
|
}
|
|
}
|