element-plus/packages/components/form/index.ts
jeremywu 3138dea797
fix(components): sub components no install issue (#3615)
- Add noop install for all sub components for supress the warning
2021-09-24 19:11:56 +08:00

12 lines
291 B
TypeScript

import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
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)