mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
import { withInstall } from '@element-plus/utils'
|
|
|
|
import Input from './src/input.vue'
|
|
|
|
export const ElInput = withInstall(Input)
|
|
export default ElInput
|
|
|
|
export * from './src/input'
|
|
|
|
export type InputInstance = InstanceType<typeof Input>
|