vant/src/radio-group/index.js
2019-07-26 11:47:17 +08:00

28 lines
484 B
JavaScript

import { createNamespace } from '../utils';
import { ParentMixin } from '../mixins/relation';
const [createComponent, bem] = createNamespace('radio-group');
export default createComponent({
mixins: [ParentMixin('vanRadio')],
props: {
value: null,
disabled: Boolean
},
watch: {
value(value) {
this.$emit('change', value);
}
},
render() {
return (
<div class={bem()} role="radiogroup">
{this.slots()}
</div>
);
}
});