mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-24 11:05:17 +08:00
c72679e4e9
* refactor(components): refactor form * refactor: resolve PR comments * refactor(components): refactor isNested * refactor: resolve PR comments
14 lines
364 B
TypeScript
14 lines
364 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils'
|
|
import Form from './src/form.vue'
|
|
import FormItem from './src/form-item.vue'
|
|
|
|
export const ElForm = withInstall(Form, {
|
|
FormItem,
|
|
})
|
|
export default ElForm
|
|
export const ElFormItem = withNoopInstall(FormItem)
|
|
|
|
export * from './src/form'
|
|
export * from './src/form-item'
|
|
export * from './src/types'
|