14 lines
326 B
JavaScript
14 lines
326 B
JavaScript
import ref from 'vue-ref';
|
|
import { antInput } from './antInputDirective';
|
|
import { antDecorator } from './FormDecoratorDirective';
|
|
import { antPortal } from './portalDirective';
|
|
|
|
export default {
|
|
install: Vue => {
|
|
Vue.use(ref, { name: 'ant-ref' });
|
|
antInput(Vue);
|
|
antDecorator(Vue);
|
|
antPortal(Vue);
|
|
},
|
|
};
|