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
30
31
32
| "use strict";
| const Text = {
| // text 组件
| text: {
| type: "",
| show: true,
| text: "",
| prefixIcon: "",
| suffixIcon: "",
| mode: "",
| href: "",
| format: "",
| call: false,
| openType: "",
| bold: false,
| block: false,
| lines: "",
| color: "#303133",
| size: 15,
| iconStyle: {
| fontSize: "15px"
| },
| decoration: "none",
| margin: 0,
| lineHeight: "",
| align: "left",
| wordWrap: "normal",
| flex1: true
| }
| };
| exports.Text = Text;
| //# sourceMappingURL=../../../../../.sourcemap/mp-weixin/uni_modules/uview-plus/components/u-text/text.js.map
|
|