mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +08:00
a6620cbbe5
* feat: add Vue.use feat * feat: Vue.use method * docs: update docs
14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
import Checkbox from './Checkbox'
|
|
import CheckboxGroup from './Group'
|
|
|
|
Checkbox.Group = CheckboxGroup
|
|
|
|
/* istanbul ignore next */
|
|
Checkbox.install = function (Vue) {
|
|
Vue.component(Checkbox.name, Checkbox)
|
|
Vue.component(CheckboxGroup.name, CheckboxGroup)
|
|
}
|
|
|
|
export default Checkbox
|
|
|