mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
import Divider from './src/index.vue'
|
|
|
|
Divider.install = (app: App): void => {
|
|
app.component(Divider.name, Divider)
|
|
}
|
|
|
|
const _Divider: SFCWithInstall<typeof Divider> = Divider
|
|
|
|
export default _Divider
|