ant-design-vue/components/_util/antDirective.js
2019-08-28 10:50:19 +08:00

12 lines
259 B
JavaScript

import ref from 'vue-ref';
import { antInput } from './antInputDirective';
import { antDecorator } from './FormDecoratorDirective';
export default {
install: Vue => {
Vue.use(ref, { name: 'ant-ref' });
antInput(Vue);
antDecorator(Vue);
},
};