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