antDirective.js 206 Bytes
import { antInput } from './antInputDirective';
import { antDecorator } from './FormDecoratorDirective';

export default {
  install: function install(Vue) {
    antInput(Vue);
    antDecorator(Vue);
  }
};