nrz 19773e2da4 [new feature] Checkbox: 新增 checkbox 组件 (#341)
* [new feature] Checkbox: init demo

* [new component]: Checkbox refactor

* [new component] Checkbox fix #231

* fix: #231
2018-07-09 21:37:17 +08:00

18 lines
326 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var Zan = require('../../dist/index');
Page({
data: {
items: [
{value: 'a'},
{value: 'b', checked: true},
{value: 'c'},
]
},
handleCheckboxChange: function(e) {
console.log('checkbox发生change事件携带value值为', e.detail)
console.log('items:', this.data.items)
}
});