mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
11 lines
166 B
JavaScript
11 lines
166 B
JavaScript
export function antDecorator(Vue) {
|
|
return Vue.directive('decorator', {});
|
|
}
|
|
|
|
export default {
|
|
// just for tag
|
|
install: Vue => {
|
|
antDecorator(Vue);
|
|
},
|
|
};
|