You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
336 B
14 lines
336 B
import Checkbox from './Checkbox';
|
|
import CheckboxGroup from './Group';
|
|
import Base from '../base';
|
|
|
|
Checkbox.Group = CheckboxGroup;
|
|
|
|
/* istanbul ignore next */
|
|
Checkbox.install = function (Vue) {
|
|
Vue.use(Base);
|
|
Vue.component(Checkbox.name, Checkbox);
|
|
Vue.component(CheckboxGroup.name, CheckboxGroup);
|
|
};
|
|
|
|
export default Checkbox;
|