element-plus/packages/input/index.ts
2020-10-29 19:37:18 +08:00

9 lines
155 B
TypeScript

import { App } from 'vue'
import Input from './src/index.vue'
export default (app: App): void => {
app.component(Input.name, Input)
}
export { Input }