mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-14 17:04:32 +00:00
14 lines
293 B
JavaScript
Executable File
14 lines
293 B
JavaScript
Executable File
import clickOutside from '@/directives/click-ouside.js'
|
|
|
|
/**
|
|
* You can register global directives here and use them as a plugin in your main Vue instance
|
|
*/
|
|
|
|
const GlobalDirectives = {
|
|
install(Vue) {
|
|
Vue.directive('click-outside', clickOutside)
|
|
},
|
|
}
|
|
|
|
export default GlobalDirectives
|