mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
ae5dcec1e8
- Fix popper transition lost issue
18 lines
617 B
TypeScript
18 lines
617 B
TypeScript
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
import Popper from './src/index.vue'
|
|
|
|
Popper.install = (app: App): void => {
|
|
app.component(Popper.name, Popper)
|
|
}
|
|
|
|
const _Popper: SFCWithInstall<typeof Popper> = Popper
|
|
|
|
export default _Popper
|
|
|
|
export { default as defaultProps, Effect } from './src/use-popper/defaults'
|
|
export type { Placement, Options } from '@popperjs/core'
|
|
export type { TriggerType, IPopperOptions, PopperInstance } from './src/use-popper/defaults'
|
|
export { default as usePopper } from './src/use-popper/index'
|
|
export * from './src/renderers/index'
|