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