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