mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* [new component]: Radio * [new component]: Radio misc * [new component] Radio code review * [new component] Radio code review * [new component] Radio misc * [new component] Radio improve style
20 lines
423 B
JavaScript
20 lines
423 B
JavaScript
Page({
|
||
|
||
data: {
|
||
items: [
|
||
{name: 'USA', value: '美国'},
|
||
{name: 'CHN', value: '中国', checked: 'true'}
|
||
],
|
||
|
||
items1: [
|
||
{name: 'USA', value: '美国'},
|
||
{name: 'BRA', value: '巴西', disabled: true },
|
||
{name: 'CHN', value: '中国', checked: 'true'}
|
||
]
|
||
},
|
||
|
||
handleRadioChange: function(e) {
|
||
console.log('radio发生change事件,携带value值为:', e.detail)
|
||
}
|
||
});
|