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

10 lines
204 B
JavaScript
Raw Normal View History

2019-01-12 11:33:27 +08:00
import { antInput } from './antInputDirective';
import { antDecorator } from './FormDecoratorDirective';
2018-12-13 22:47:23 +08:00
export default {
install: (Vue, options) => {
2019-01-12 11:33:27 +08:00
antInput(Vue);
antDecorator(Vue);
2018-12-13 22:47:23 +08:00
},
2019-01-12 11:33:27 +08:00
};