ant-design-vue/components/checkbox/index.js

13 lines
291 B
JavaScript
Raw Normal View History

2019-01-12 03:33:27 +00:00
import Checkbox from './Checkbox';
import CheckboxGroup from './Group';
2017-10-26 07:18:08 +00:00
2019-01-12 03:33:27 +00:00
Checkbox.Group = CheckboxGroup;
/* istanbul ignore next */
Checkbox.install = function(app) {
app.component(Checkbox.name, Checkbox);
app.component(CheckboxGroup.name, CheckboxGroup);
2019-01-12 03:33:27 +00:00
};
2017-10-26 07:18:08 +00:00
2019-01-12 03:33:27 +00:00
export default Checkbox;