1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| "use strict";
| const Keyboard = {
| // 键盘组件
| keyboard: {
| mode: "number",
| dotDisabled: false,
| tooltip: true,
| showTips: true,
| tips: "",
| showCancel: true,
| showConfirm: true,
| random: false,
| safeAreaInsetBottom: true,
| closeOnClickOverlay: true,
| show: false,
| overlay: true,
| zIndex: 10075,
| cancelText: "取消",
| confirmText: "确定",
| autoChange: false
| }
| };
| exports.Keyboard = Keyboard;
| //# sourceMappingURL=../../../../../.sourcemap/mp-weixin/uni_modules/uview-plus/components/u-keyboard/keyboard.js.map
|
|