uview-plus 3.3.31 → 3.3.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/changelog.md
CHANGED
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
import { randomArray, sleep } from '../../libs/function/index';
|
|
75
75
|
/**
|
|
76
76
|
* keyboard 键盘组件
|
|
77
|
-
* @description 此为
|
|
77
|
+
* @description 此为uview-plus自定义的键盘面板,内含了数字键盘,车牌号键,身份证号键盘3种模式,都有可以打乱按键顺序的选项。
|
|
78
78
|
* @tutorial https://uview-plus.jiangruyi.com/components/keyboard.html
|
|
79
79
|
* @property {Boolean} random 是否打乱键盘的顺序
|
|
80
80
|
* @event {Function} change 点击键盘触发
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
* @example <u-keyboard ref="uKeyboard" mode="car" v-model="show"></u-keyboard>
|
|
83
83
|
*/
|
|
84
84
|
export default {
|
|
85
|
-
name: "u-keyboard",
|
|
85
|
+
name: "u-car-keyboard",
|
|
86
86
|
mixins: [mpMixin, mixin, props],
|
|
87
87
|
data() {
|
|
88
88
|
return {
|
package/index.js
CHANGED