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