This commit is contained in:
2023-08-11 10:45:20 +08:00
commit 161ca982f3
31850 changed files with 2706500 additions and 0 deletions

32
node_modules/vant/es/radio-group/index.js generated vendored Normal file
View File

@ -0,0 +1,32 @@
import { createNamespace } from '../utils';
import { FieldMixin } from '../mixins/field';
import { ParentMixin } from '../mixins/relation';
var _createNamespace = createNamespace('radio-group'),
createComponent = _createNamespace[0],
bem = _createNamespace[1];
export default createComponent({
mixins: [ParentMixin('vanRadio'), FieldMixin],
props: {
value: null,
disabled: Boolean,
direction: String,
checkedColor: String,
iconSize: [Number, String]
},
watch: {
value: function value(_value) {
this.$emit('change', _value);
}
},
render: function render() {
var h = arguments[0];
return h("div", {
"class": bem([this.direction]),
"attrs": {
"role": "radiogroup"
}
}, [this.slots()]);
}
});