1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- mode: {
- type: String,
- default: () => defProps.keyboard.mode
- },
-
- dotDisabled: {
- type: Boolean,
- default: () => defProps.keyboard.dotDisabled
- },
-
- tooltip: {
- type: Boolean,
- default: () => defProps.keyboard.tooltip
- },
-
- showTips: {
- type: Boolean,
- default: () => defProps.keyboard.showTips
- },
-
- tips: {
- type: String,
- default: () => defProps.keyboard.tips
- },
-
- showCancel: {
- type: Boolean,
- default: () => defProps.keyboard.showCancel
- },
-
- showConfirm: {
- type: Boolean,
- default: () => defProps.keyboard.showConfirm
- },
-
- random: {
- type: Boolean,
- default: () => defProps.keyboard.random
- },
-
- safeAreaInsetBottom: {
- type: Boolean,
- default: () => defProps.keyboard.safeAreaInsetBottom
- },
-
- closeOnClickOverlay: {
- type: Boolean,
- default: () => defProps.keyboard.closeOnClickOverlay
- },
-
- show: {
- type: Boolean,
- default: () => defProps.keyboard.show
- },
-
- overlay: {
- type: Boolean,
- default: () => defProps.keyboard.overlay
- },
-
- zIndex: {
- type: [String, Number],
- default: () => defProps.keyboard.zIndex
- },
-
- cancelText: {
- type: String,
- default: () => defProps.keyboard.cancelText
- },
-
- confirmText: {
- type: String,
- default: () => defProps.keyboard.confirmText
- },
-
- autoChange: {
- type: Boolean,
- default: () => defProps.keyboard.autoChange
- }
- }
- })
|