# NumberKeyboard ### Install ```js import { createApp } from 'vue'; import { NumberKeyboard } from 'vant'; const app = createApp(); app.use(NumberKeyboard); ``` ## Usage ### Default Keyboard ```html Show Keyboard ``` ```js import { ref } from 'vue'; import { Toast } from 'vant'; export default { setup() { const show = ref(true); const onInput = (value) => Toast(value); const onDelete = () => Toast('delete'); return { show, onInput, onDelete, }; }, }; ``` ### Keyboard With Sidebar ```html ``` ### IdNumber Keyboard Use `extra-key` prop to set the content of bottom left button. ```html Show IdNumber Keyboard ``` ### Keyboard With Title Use `title` prop to set keyboard title. ```html Show Keyboard With Title ``` ### Multiple ExtraKey ```html Show Keyboard With Multiple ExtraKey ``` ### Random Key Order Use `random-key-order` prop to shuffle the order of keys. ```html Show Keyboard With Random Key Order ``` ### Bind Value ```html ``` ```js import { ref } from 'vue'; export default { setup() { const show = ref(true); const value = ref(''); return { show, value, }; }, }; ``` ## API ### Props | Attribute | Description | Type | Default | | --- | --- | --- | --- | | v-model | Current value | _string_ | - | | show | Whether to show keyboard | _boolean_ | - | | title | Keyboard title | _string_ | - | | theme | Keyboard theme,can be set to `custom` | _string_ | `default` | | maxlength | Value maxlength | _number \| string_ | - | | transition | Whether to show transition animation | _boolean_ | `true` | | z-index | Keyboard z-index | _number \| string_ | `100` | | extra-key | Content of bottom left key | _string \| string[]_ | `''` | | close-button-text | Close button text | _string_ | - | | delete-button-text | Delete button text | _string_ | Delete Icon | | close-button-loading | Whether to show loading close button in custom theme | _boolean_ | `false` | | show-delete-key | Whether to show delete button | _boolean_ | `true` | | blur-on-close `v3.0.6` | Whether to emit blur event when clicking close button | _boolean_ | `true` | | hide-on-click-outside | Whether to hide keyboard when outside is clicked | _boolean_ | `true` | | teleport | Return the mount node for NumberKeyboard | _string \| Element_ | - | | safe-area-inset-bottom | Whether to enable bottom safe area adaptation | _boolean_ | `true` | | random-key-order | Whether to shuffle the order of keys | _boolean_ | `false` | ### Events | Event | Description | Arguments | | --- | --- | --- | | input | Emitted when keydown | key: Content of the key | | delete | Emitted when the delete key is pressed | - | | close | Emitted when the close button is clicked | - | | blur | Emitted when the close button is clicked or the keyboard is blured | - | | show | Emitted when keyboard is fully displayed | - | | hide | Emitted when keyboard is fully hidden | - | ### Slots | Name | Description | | ---------- | ------------------------- | | delete | Custom delete key content | | extra-key | Custom extra key content | | title-left | Custom title left content | ### Less Variables How to use: [Custom Theme](#/en-US/theme). | Name | Default Value | Description | | --- | --- | --- | | @number-keyboard-background-color | `@gray-2` | - | | @number-keyboard-key-height | `48px` | - | | @number-keyboard-key-font-size | `28px` | - | | @number-keyboard-key-active-color | `@gray-3` | - | | @number-keyboard-delete-font-size | `@font-size-lg` | - | | @number-keyboard-title-color | `@gray-7` | - | | @number-keyboard-title-height | `34px` | - | | @number-keyboard-title-font-size | `@font-size-lg` | - | | @number-keyboard-close-padding | `0 @padding-md` | - | | @number-keyboard-close-color | `@text-link-color` | - | | @number-keyboard-close-font-size | `@font-size-md` | - | | @number-keyboard-button-text-color | `@white` | - | | @number-keyboard-button-background-color | `@blue` | - | | @number-keyboard-cursor-color | `@text-color` | - | | @number-keyboard-cursor-width | `1px` | - | | @number-keyboard-cursor-height | `40%` | - | | @number-keyboard-cursor-animation-duration | `1s` | - | | @number-keyboard-z-index | `100` | - |