# NumberKeyboard ### Install ```js import Vue from 'vue'; import { NumberKeyboard } from 'vant'; Vue.use(NumberKeyboard); ``` ## Usage ### Default Style ```html Show Keyboard ``` ```js import { Toast } from 'vant'; export default { data() { return { show: true, }; }, methods: { onInput(value) { Toast(value); }, onDelete() { Toast('delete'); }, }, }; ``` ### Custom Style ```html ``` ### Bind Value ```html ``` ```js export default { data() { return { show: false, value: '', }; }, }; ``` ### Bottom Left Button Content Use `extra-key` prop to set the content of bottom left button ```html Show Id Card Number Keyboard ``` ### Keyboard Title Use `title` prop to set keyboard title ```html Show Custom Title Keyboard ``` ## API ### Props | Attribute | Description | Type | Default | | --- | --- | --- | --- | | v-model `v2.0.2` | Current value | _string_ | - | | show | Whether to show keyboard | _boolean_ | - | | theme | Keyboard themeļ¼Œcan be set to `default` `custom` | _string_ | `default` | | title | Keyboard title | _string_ | - | | maxlength `v2.0.2` | 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_ | `''` | | close-button-text | Close button text | _string_ | `-` | | delete-button-text | Delete button text | _string_ | `delete` | | show-delete-key `v2.5.9` | Whether to show delete button | _boolean_ | `true` | | hide-on-click-outside | Whether to hide keyboard when click outside | _boolean_ | `true` | | safe-area-inset-bottom | Whether to enable bottom safe area adaptation | _boolean_ | `true` | ### Events | Event | Description | Arguments | | --- | --- | --- | | input | Triggered when keydown | key: Content of the key | | delete | Triggered when press delete key | - | | close | Triggered when click close button | - | | blur | Triggered when click close button or blur keyboard | - | | show | Triggered when keyboard is fully displayed. | - | | hide | Triggered 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 |