mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
e8c162ea72
* fix(build): fix some export & import path * fix(build): build utils * fix: fix error import * fix(build): fix import error * fix(build): remove useless dependent * fix(build): fix build command error
8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
import { App } from 'vue'
|
|
import Input from './src/index.vue'
|
|
export default (app: App): void => {
|
|
app.component(Input.name, Input)
|
|
}
|
|
export { Input }
|
|
|