ant-design-vue/components/col/index.js
tangjinzhou a6620cbbe5
feat: add component Vue.use method (#197)
* feat: add Vue.use feat

* feat: Vue.use method

* docs: update docs
2018-09-19 13:21:57 +08:00

8 lines
141 B
JavaScript

import { Col } from '../grid'
/* istanbul ignore next */
Col.install = function (Vue) {
Vue.component(Col.name, Col)
}
export default Col