ant-design-vue/components/_util/antDirective.js
2018-12-14 23:31:02 +08:00

10 lines
199 B
JavaScript

import { antInput } from './antInputDirective'
import { antDecorator } from './FormDecoratorDirective'
export default {
install: (Vue, options) => {
antInput(Vue)
antDecorator(Vue)
},
}