mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* change example dir * Update README.md 更新预览教程 * 新增 layout 组件 * exclude example * change .wxss -> .pcss * 脚本目录更名为 scripts
33 lines
492 B
JavaScript
33 lines
492 B
JavaScript
var Zan = require('../../dist/index');
|
|
|
|
Page(Object.assign({}, Zan.CheckLabel, {
|
|
|
|
data: {
|
|
items: [
|
|
{
|
|
padding: 0,
|
|
value: '1',
|
|
name: '选项一',
|
|
},
|
|
{
|
|
padding: 0,
|
|
value: '2',
|
|
name: '选项二',
|
|
},
|
|
],
|
|
|
|
checked: {
|
|
base: -1,
|
|
color: -1
|
|
},
|
|
|
|
activeColor: '#4b0'
|
|
},
|
|
|
|
handleZanSelectChange({ componentId, value }) {
|
|
this.setData({
|
|
[`checked.${componentId}`]: value
|
|
});
|
|
}
|
|
}));
|