ant-design-vue/components/radio/index.ts
2021-01-26 11:18:51 +08:00

25 lines
617 B
TypeScript

import { App, Plugin } from 'vue';
import Radio from './Radio';
import Group from './Group';
import Button from './RadioButton';
export { RadioChangeEventTarget, RadioChangeEvent } from './interface';
Radio.Group = Group;
Radio.Button = Button;
/* istanbul ignore next */
Radio.install = function(app: App) {
app.component(Radio.name, Radio);
app.component(Radio.Group.name, Radio.Group);
app.component(Radio.Button.name, Radio.Button);
return app;
};
export { Button, Group };
export default Radio as typeof Radio &
Plugin & {
readonly Group: typeof Group;
readonly Button: typeof Button;
};