11 lines
166 B
TypeScript
11 lines
166 B
TypeScript
|
export function antDecorator(Vue) {
|
||
|
return Vue.directive('decorator', {});
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
// just for tag
|
||
|
install: Vue => {
|
||
|
antDecorator(Vue);
|
||
|
},
|
||
|
};
|