76b0f6a06be8cdae57d756636937d36f5914c19e0c3fec2bf2d286b81ec23ee03b902ecb960c0965c2dcb354f68c9a52651f65a587c56e30b5c8193cfd8c58 592 B

123456789101112131415161718192021222324
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. const attachEvents = (el, binding) => {
  4. const popperComponent = binding.arg || binding.value;
  5. const popover = popperComponent == null ? void 0 : popperComponent.popperRef;
  6. if (popover) {
  7. popover.triggerRef = el;
  8. }
  9. };
  10. var PopoverDirective = {
  11. mounted(el, binding) {
  12. attachEvents(el, binding);
  13. },
  14. updated(el, binding) {
  15. attachEvents(el, binding);
  16. }
  17. };
  18. const VPopover = "popover";
  19. exports.VPopover = VPopover;
  20. exports["default"] = PopoverDirective;
  21. //# sourceMappingURL=directive.js.map