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

12 lines
259 B
JavaScript
Raw Normal View History

import ref from 'vue-ref';
2019-01-12 03:33:27 +00:00
import { antInput } from './antInputDirective';
import { antDecorator } from './FormDecoratorDirective';
2018-12-13 14:47:23 +00:00
export default {
2019-02-01 09:23:00 +00:00
install: Vue => {
Vue.use(ref, { name: 'ant-ref' });
2019-01-12 03:33:27 +00:00
antInput(Vue);
antDecorator(Vue);
2018-12-13 14:47:23 +00:00
},
2019-01-12 03:33:27 +00:00
};