mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-01 03:28:42 +08:00
26496ba0a9
* style: remove not use pkg * refactor: vc-checkbox * refactor: checkbox * fix: radio type
20 lines
611 B
TypeScript
20 lines
611 B
TypeScript
import type { App, Plugin } from 'vue';
|
|
import Checkbox from './Checkbox';
|
|
import CheckboxGroup from './Group';
|
|
export type { CheckboxProps, CheckboxGroupProps, CheckboxOptionType } from './interface';
|
|
export { checkboxProps, checkboxGroupProps } from './interface';
|
|
|
|
Checkbox.Group = CheckboxGroup;
|
|
|
|
/* istanbul ignore next */
|
|
Checkbox.install = function (app: App) {
|
|
app.component(Checkbox.name, Checkbox);
|
|
app.component(CheckboxGroup.name, CheckboxGroup);
|
|
return app;
|
|
};
|
|
export { CheckboxGroup };
|
|
export default Checkbox as typeof Checkbox &
|
|
Plugin & {
|
|
readonly Group: typeof CheckboxGroup;
|
|
};
|