17 lines
		
	
	
		
			385 B
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			385 B
		
	
	
	
		
			JavaScript
		
	
	
| import Radio from './Radio';
 | |
| import Group from './Group';
 | |
| import Button from './RadioButton';
 | |
| 
 | |
| 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);
 | |
| };
 | |
| 
 | |
| export { Button, Group };
 | |
| export default Radio;
 |