[新增] form-item 组件

This commit is contained in:
就眠仪式
2021-10-04 07:44:31 +08:00
parent 8f3b104c8b
commit 2fb6d43e39
5 changed files with 36 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
import type { App } from 'vue'
import Component from './index.vue'
import type { IDefineComponent } from '../type/index'
Component.install = (app: App) => {
app.component(Component.name || 'LayFormItem', Component)
}
export default Component as IDefineComponent