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

14 lines
326 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';
2020-05-13 10:36:53 +00:00
import { antPortal } from './portalDirective';
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);
2020-05-13 10:36:53 +00:00
antPortal(Vue);
2018-12-13 14:47:23 +00:00
},
2019-01-12 03:33:27 +00:00
};