mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-12 10:45:10 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
12 lines
278 B
TypeScript
12 lines
278 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)
|