gradido/frontend/src/plugins/globalDirectives.js
2024-07-12 13:08:00 +02:00

14 lines
262 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