mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-27 03:01:14 +08:00
9 lines
155 B
TypeScript
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 }
|