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

18 lines
425 B
TypeScript
Raw Normal View History

2020-11-01 07:03:33 +00:00
import { App, Plugin } from 'vue';
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) {
app.component(Checkbox.name, Checkbox);
app.component(CheckboxGroup.name, CheckboxGroup);
2020-10-13 11:14:56 +00:00
return app;
2019-01-12 03:33:27 +00:00
};
2017-10-26 07:18:08 +00:00
2020-11-01 07:03:33 +00:00
export default Checkbox as typeof Checkbox &
Plugin & {
readonly Group: typeof CheckboxGroup;
};