2016-11-08 07:01:00 +00:00
|
|
|
import Popover from './src/main';
|
|
|
|
import directive from './src/directive';
|
|
|
|
import Vue from 'vue';
|
2016-10-20 06:35:12 +00:00
|
|
|
|
|
|
|
Vue.directive('popover', directive);
|
2016-07-27 06:15:02 +00:00
|
|
|
|
2016-10-19 14:48:35 +00:00
|
|
|
/* istanbul ignore next */
|
2016-07-27 06:15:02 +00:00
|
|
|
Popover.install = function(Vue) {
|
2016-10-20 06:35:12 +00:00
|
|
|
Vue.directive('popover', directive);
|
2016-07-27 06:15:02 +00:00
|
|
|
Vue.component(Popover.name, Popover);
|
|
|
|
};
|
2016-10-20 06:35:12 +00:00
|
|
|
Popover.directive = directive;
|
2016-07-27 06:15:02 +00:00
|
|
|
|
2016-11-08 07:01:00 +00:00
|
|
|
export default Popover;
|