mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
b19d2fc374
* fix: correct bundle export * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update
14 lines
424 B
TypeScript
14 lines
424 B
TypeScript
import type { App } from 'vue'
|
|
import Popper from './src/index.vue'
|
|
|
|
Popper.install = (app: App): void => {
|
|
app.component(Popper.name, Popper)
|
|
}
|
|
|
|
export default Popper
|
|
|
|
export { default as defaultProps, Effect } from './src/use-popper/defaults'
|
|
export type { TriggerType, IPopperOptions } from './src/use-popper/defaults'
|
|
export { default as usePopper } from './src/use-popper/index'
|
|
export * from './src/renderers/index'
|