2019-01-12 03:33:27 +00:00
|
|
|
export function antDecorator(Vue) {
|
|
|
|
return Vue.directive('decorator', {});
|
2018-12-13 14:47:23 +00:00
|
|
|
}
|
|
|
|
|
2018-12-07 13:27:47 +00:00
|
|
|
export default {
|
|
|
|
// just for tag
|
2019-02-01 09:23:00 +00:00
|
|
|
install: Vue => {
|
2019-01-12 03:33:27 +00:00
|
|
|
antDecorator(Vue);
|
2018-12-07 13:27:47 +00:00
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|