UNPKG

398 BJavaScriptView Raw
1import Radio from './Radio';
2import Group from './Group';
3import Button from './RadioButton';
4Radio.Group = Group;
5Radio.Button = Button;
6/* istanbul ignore next */
7
8Radio.install = function (app) {
9 app.component(Radio.name, Radio);
10 app.component(Radio.Group.name, Radio.Group);
11 app.component(Radio.Button.name, Radio.Button);
12 return app;
13};
14
15export { Button, Group };
16export default Radio;
\No newline at end of file