index.mjs 508 B

123456789101112
  1. import Popover from './src/popover2.mjs';
  2. import PopoverDirective, { VPopover } from './src/directive.mjs';
  3. export { popoverEmits, popoverProps } from './src/popover.mjs';
  4. import { withInstallDirective, withInstall } from '../../utils/vue/install.mjs';
  5. const ElPopoverDirective = withInstallDirective(PopoverDirective, VPopover);
  6. const ElPopover = withInstall(Popover, {
  7. directive: ElPopoverDirective
  8. });
  9. export { ElPopover, ElPopoverDirective, ElPopover as default };
  10. //# sourceMappingURL=index.mjs.map