1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| "use strict";
| const Checkbox = {
| // checkbox组件
| checkbox: {
| name: "",
| shape: "",
| size: "",
| checkbox: false,
| disabled: "",
| activeColor: "",
| inactiveColor: "",
| iconSize: "",
| iconColor: "",
| label: "",
| labelSize: "",
| labelColor: "",
| labelDisabled: ""
| }
| };
| exports.Checkbox = Checkbox;
| //# sourceMappingURL=../../../../../.sourcemap/mp-weixin/uni_modules/uview-plus/components/u-checkbox/checkbox.js.map
|
|