UNPKG

vue-argon-theme

Version:
14 lines (10 loc) 296 B
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;