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
26
27
| "use strict";
| const Tabs = {
| //
| tabs: {
| duration: 300,
| list: [],
| lineColor: "#3c9cff",
| activeStyle: {
| color: "#303133"
| },
| inactiveStyle: {
| color: "#606266"
| },
| lineWidth: 20,
| lineHeight: 3,
| lineBgSize: "cover",
| itemStyle: {
| height: "44px"
| },
| scrollable: true,
| current: 0,
| keyName: "name",
| iconStyle: {}
| }
| };
| exports.Tabs = Tabs;
| //# sourceMappingURL=../../../../../.sourcemap/mp-weixin/uni_modules/uview-plus/components/u-tabs/tabs.js.map
|
|