ant-design-vue/components/radio/index.js

17 lines
385 B
JavaScript
Raw Normal View History

2019-01-12 03:33:27 +00:00
import Radio from './Radio';
import Group from './Group';
import Button from './RadioButton';
2017-10-27 06:04:48 +00:00
2019-01-12 03:33:27 +00:00
Radio.Group = Group;
Radio.Button = Button;
/* istanbul ignore next */
Radio.install = function(app) {
app.component(Radio.name, Radio);
app.component(Radio.Group.name, Radio.Group);
app.component(Radio.Button.name, Radio.Button);
2019-01-12 03:33:27 +00:00
};
2017-10-27 06:04:48 +00:00
2019-01-12 03:33:27 +00:00
export { Button, Group };
export default Radio;