Yao e4dfc9e48c
[new feature] Layout: 新增 layout 组件 (#43)
* change example dir

* Update README.md

更新预览教程

* 新增 layout 组件

* exclude example

* change .wxss -> .pcss

* 脚本目录更名为 scripts
2017-10-31 17:41:31 +08:00

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
});
}
}));