index.js 336 B

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