mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
11 lines
301 B
TypeScript
11 lines
301 B
TypeScript
import { App } from 'vue'
|
|
import Form from './src/form.vue'
|
|
import FormItem from './src/form-item.vue'
|
|
import LabelWrap from './src/label-wrap'
|
|
|
|
export default (app: App): void => {
|
|
app.component(Form.name, Form)
|
|
app.component(FormItem.name, FormItem)
|
|
app.component(LabelWrap.name, LabelWrap)
|
|
}
|