mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 19:28:14 +08:00
55348b30b6
* style: use prettier * style: just prettier format, no code changes * style: eslint fix object-shorthand, prefer-const * style: fix no-void * style: no-console
29 lines
768 B
TypeScript
29 lines
768 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/types'
|
|
|
|
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
|