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
28
29
| "use strict";
| const Cell = {
| // cell组件的props
| cell: {
| customClass: "",
| title: "",
| label: "",
| value: "",
| icon: "",
| disabled: false,
| border: true,
| center: false,
| url: "",
| linkType: "navigateTo",
| clickable: false,
| isLink: false,
| required: false,
| arrowDirection: "",
| iconStyle: {},
| rightIconStyle: {},
| rightIcon: "arrow-right",
| titleStyle: {},
| size: "",
| stop: true,
| name: ""
| }
| };
| exports.Cell = Cell;
| //# sourceMappingURL=../../../../../.sourcemap/mp-weixin/uni_modules/uview-plus/components/u-cell/cell.js.map
|
|