mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 20:18:22 +08:00
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(Vue) {
|
|
Vue.component(Radio.name, Radio);
|
|
Vue.component(Radio.Group.name, Radio.Group);
|
|
Vue.component(Radio.Button.name, Radio.Button);
|
|
};
|
|
|
|
export { Button, Group };
|
|
export default Radio;
|