mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
28 lines
412 B
JavaScript
28 lines
412 B
JavaScript
Component({
|
|
properties: {
|
|
items: {
|
|
type: Array,
|
|
value: []
|
|
},
|
|
name: {
|
|
type: String,
|
|
value: ''
|
|
},
|
|
checkedValue: {
|
|
type: String,
|
|
value: ''
|
|
},
|
|
activeColor: {
|
|
type: String,
|
|
value: '#ff4444'
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
handleSelectChange(e) {
|
|
const value = e.detail.value;
|
|
this.triggerEvent('change', { value });
|
|
}
|
|
}
|
|
});
|