mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 17:31:43 +08:00
10 lines
199 B
JavaScript
10 lines
199 B
JavaScript
|
import { antInput } from './antInputDirective'
|
||
|
import { antDecorator } from './FormDecoratorDirective'
|
||
|
|
||
|
export default {
|
||
|
install: (Vue, options) => {
|
||
|
antInput(Vue)
|
||
|
antDecorator(Vue)
|
||
|
},
|
||
|
}
|