ant-design-vue/components/_util/antDirective.js
2019-01-12 12:46:29 +08:00

10 lines
204 B
JavaScript

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