ant-design-vue/components/_util/antDirective.js
2019-02-01 17:23:00 +08:00

10 lines
193 B
JavaScript

import { antInput } from './antInputDirective';
import { antDecorator } from './FormDecoratorDirective';
export default {
install: Vue => {
antInput(Vue);
antDecorator(Vue);
},
};