mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
14 lines
256 B
JavaScript
Executable File
14 lines
256 B
JavaScript
Executable File
import { focus } from 'vue-focus'
|
|
|
|
/**
|
|
* You can register global directives here and use them as a plugin in your main Vue instance
|
|
*/
|
|
|
|
const GlobalDirectives = {
|
|
install(Vue) {
|
|
Vue.directive('focus', focus)
|
|
},
|
|
}
|
|
|
|
export default GlobalDirectives
|