@fe6/water-pro
Version:
An enterprise-class UI design language and Vue-based implementation
13 lines (11 loc) • 312 B
JavaScript
import Form from './Form';
export * from './interface';
export { formProps } from './Form';
export { formItemProps } from './FormItem';
/* istanbul ignore next */
Form.install = function (app) {
app.component(Form.name, Form);
app.component(Form.Item.name, Form.Item);
return app;
};
export default Form;