8 lines
228 B
JavaScript
Executable File
8 lines
228 B
JavaScript
Executable File
import Vue from 'vue'
|
|
import clickOutside from './directives/click-ouside.js';
|
|
|
|
/**
|
|
* You can register global directives here and use them as a plugin in your main Vue instance
|
|
*/
|
|
Vue.directive('click-outside', clickOutside);
|