naive-ui/packages/common/Form/index.js

11 lines
233 B
JavaScript
Raw Normal View History

2019-07-22 19:14:47 +08:00
/* istanbul ignore file */
import Form from './src/main.vue'
2019-11-01 19:01:55 +08:00
import FormItem from './src/FormItem.vue'
2019-07-22 19:14:47 +08:00
Form.install = function (Vue) {
Vue.component(Form.name, Form)
Vue.component(FormItem.name, FormItem)
}
export default Form