mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-01 11:38:36 +08:00
a6620cbbe5
* feat: add Vue.use feat * feat: Vue.use method * docs: update docs
9 lines
142 B
JavaScript
9 lines
142 B
JavaScript
import { Row } from '../grid'
|
|
|
|
/* istanbul ignore next */
|
|
Row.install = function (Vue) {
|
|
Vue.component(Row.name, Row)
|
|
}
|
|
|
|
export default Row
|