ant-design-vue/components/_util/antDirective.js

10 lines
199 B
JavaScript
Raw Normal View History

2018-12-13 14:47:23 +00:00
import { antInput } from './antInputDirective'
import { antDecorator } from './FormDecoratorDirective'
export default {
install: (Vue, options) => {
antInput(Vue)
antDecorator(Vue)
},
}