index.ts 238 B

12345678910
  1. import { withInstall } from '@element-plus/utils'
  2. import Input from './src/input.vue'
  3. export const ElInput = withInstall(Input)
  4. export default ElInput
  5. export * from './src/input'
  6. export type InputInstance = InstanceType<typeof Input>