mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 13:17:47 +08:00
9 lines
204 B
JavaScript
9 lines
204 B
JavaScript
const RadioGroup = require('../radio/src/radio-group.vue');
|
|
|
|
/* istanbul ignore next */
|
|
RadioGroup.install = function(Vue) {
|
|
Vue.component(RadioGroup.name, RadioGroup);
|
|
};
|
|
|
|
module.exports = RadioGroup;
|