element-plus/packages/form-item/index.ts

12 lines
311 B
TypeScript

import { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
import FormItem from '../form/src/form-item.vue'
FormItem.install = (app: App): void => {
app.component(FormItem.name, FormItem)
}
const _FormItem: SFCWithInstall<typeof FormItem> = FormItem
export default _FormItem