element-plus/packages/input/index.ts
Hanx 869cec59ba
Feat/input (#216)
* feat(input): migrate input component simply

re #95

* feat(input): mainly complete input component & add more input tests

* fix: address pr comments

Co-authored-by: 陈婉玉 <simonaliachen@gmail.com>
2020-09-04 08:24:56 +08:00

6 lines
136 B
TypeScript

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