🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜
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.

25 lines
617 B

import { App, Plugin } from 'vue';
import Radio from './Radio';
import Group from './Group';
import Button from './RadioButton';
7 years ago
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;
};
7 years ago
export { Button, Group };
export default Radio as typeof Radio &
Plugin & {
readonly Group: typeof Group;
readonly Button: typeof Button;
};