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