10 lines
191 B
JavaScript
10 lines
191 B
JavaScript
|
import antDirective from '../_util/antDirective';
|
||
|
const base = {};
|
||
|
const install = function(Vue) {
|
||
|
base.Vue = Vue;
|
||
|
Vue.use(antDirective);
|
||
|
};
|
||
|
base.install = install;
|
||
|
|
||
|
export default base;
|