mirror of https://github.com/ElemeFE/element
29 lines
490 B
Vue
29 lines
490 B
Vue
<script>
|
|
import emitter from 'element-ui/src/mixins/emitter';
|
|
|
|
export default {
|
|
name: 'ElRadioGroup',
|
|
|
|
componentName: 'radio-group',
|
|
|
|
mixins: [emitter],
|
|
|
|
props: {
|
|
value: [String, Number],
|
|
size: String
|
|
},
|
|
watch: {
|
|
value(value) {
|
|
this.$emit('change', value);
|
|
this.dispatch('form-item', 'el.form.change', [this.value]);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="el-radio-group">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|