Files
MiniProgram/ProjectLiaisonForm/demos/radio/group/group.js

23 lines
390 B
JavaScript
Raw Normal View History

2025-08-15 14:05:08 +08:00
Component({
properties: {
items: {
type: Array,
value: [],
},
value: {
type: String,
value: '',
},
},
data: {
currentValue: '',
},
methods: {
onChange(event) {
this.setData({
currentValue: event.detail.name,
});
},
},
});