mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
29 lines
762 B
TypeScript
29 lines
762 B
TypeScript
import Popover from './src/index.vue'
|
|
import PopoverDirective, { VPopover } from './src/directive'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
|
|
|
Popover.install = (app: App): void => {
|
|
app.component(Popover.name, Popover)
|
|
}
|
|
;(PopoverDirective as SFCWithInstall<typeof PopoverDirective>).install = (
|
|
app: App
|
|
) => {
|
|
app.directive(VPopover, PopoverDirective)
|
|
}
|
|
|
|
const _PopoverDirective = PopoverDirective as SFCWithInstall<
|
|
typeof PopoverDirective
|
|
>
|
|
|
|
Popover.directive = _PopoverDirective
|
|
|
|
const _Popover = Popover as any as SFCWithInstall<typeof Popover> & {
|
|
directive: typeof _PopoverDirective
|
|
}
|
|
|
|
export default _Popover
|
|
export const ElPopover = _Popover
|
|
export const ElPopoverDirective = _PopoverDirective
|