You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
508 B

1 month ago
  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