1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| "use strict";
| const Badge = {
| // 徽标数组件
| badge: {
| isDot: false,
| value: "",
| show: true,
| max: 999,
| type: "error",
| showZero: false,
| bgColor: null,
| color: null,
| shape: "circle",
| numberType: "overflow",
| offset: [],
| inverted: false,
| absolute: false
| }
| };
| exports.Badge = Badge;
| //# sourceMappingURL=../../../../../.sourcemap/mp-weixin/uni_modules/uview-plus/components/u-badge/badge.js.map
|
|