mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 20:47:56 +08:00
12 lines
259 B
JavaScript
12 lines
259 B
JavaScript
import ref from 'vue-ref';
|
|
import { antInput } from './antInputDirective';
|
|
import { antDecorator } from './FormDecoratorDirective';
|
|
|
|
export default {
|
|
install: Vue => {
|
|
Vue.use(ref, { name: 'ant-ref' });
|
|
antInput(Vue);
|
|
antDecorator(Vue);
|
|
},
|
|
};
|