1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| "use strict";
| const RadioGroup = {
| // radio-group组件
| radioGroup: {
| value: "",
| disabled: false,
| shape: "circle",
| activeColor: "#2979ff",
| inactiveColor: "#c8c9cc",
| name: "",
| size: 18,
| placement: "row",
| label: "",
| labelColor: "#303133",
| labelSize: 14,
| labelDisabled: false,
| iconColor: "#ffffff",
| iconSize: 12,
| borderBottom: false,
| iconPlacement: "left",
| gap: "10px"
| }
| };
| exports.RadioGroup = RadioGroup;
| //# sourceMappingURL=../../../../../.sourcemap/mp-weixin/uni_modules/uview-plus/components/u-radio-group/radioGroup.js.map
|
|