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.
19 lines
591 B
19 lines
591 B
import './src/index.mjs';
|
|
import PopoverDirective, { VPopover } from './src/directive.mjs';
|
|
import script from './src/index.vue_vue_type_script_lang.mjs';
|
|
|
|
script.install = (app) => {
|
|
app.component(script.name, script);
|
|
};
|
|
PopoverDirective.install = (app) => {
|
|
app.directive(VPopover, PopoverDirective);
|
|
};
|
|
const _PopoverDirective = PopoverDirective;
|
|
script.directive = _PopoverDirective;
|
|
const _Popover = script;
|
|
const ElPopover = _Popover;
|
|
const ElPopoverDirective = _PopoverDirective;
|
|
|
|
export { ElPopover, ElPopoverDirective, _Popover as default };
|
|
//# sourceMappingURL=index.mjs.map
|