NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/ant-design-vue/es/_util/antDirective.js
2023-09-14 14:47:11 +08:00

13 lines
339 B
Java

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