mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
28 lines
484 B
JavaScript
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>
|
|
);
|
|
}
|
|
});
|