UNPKG

336 BJavaScriptView Raw
1import Popover from './src/main';
2import directive from './src/directive';
3import Vue from 'vue';
4
5Vue.directive('popover', directive);
6
7/* istanbul ignore next */
8Popover.install = function(Vue) {
9 Vue.directive('popover', directive);
10 Vue.component(Popover.name, Popover);
11};
12Popover.directive = directive;
13
14export default Popover;