2019-08-28 02:50:19 +00:00
|
|
|
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 => {
|
2019-08-28 02:50:19 +00:00
|
|
|
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
|
|
|
};
|