mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
12 lines
281 B
TypeScript
12 lines
281 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
|
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)
|