17 lines
401 B
Vue
17 lines
401 B
Vue
import Vue from 'vue'
|
|
import Form from './Form'
|
|
import antRefDirective from '../_util/antRefDirective'
|
|
|
|
Vue.use(antRefDirective)
|
|
|
|
export { FormProps, FormCreateOption, ValidationRule } from './Form'
|
|
export { FormItemProps } from './FormItem'
|
|
|
|
/* istanbul ignore next */
|
|
Form.install = function (Vue) {
|
|
Vue.component(Form.name, Form)
|
|
Vue.component(Form.Item.name, Form.Item)
|
|
}
|
|
|
|
export default Form
|