mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
import type { App } from 'vue'
|
|
import Popper from './src/index.vue'
|
|
|
|
export default (app: App) => {
|
|
app.component(Popper.name, Popper)
|
|
}
|
|
|
|
export { Popper }
|