## InputNumber Input numerical values with a customizable range. ### Basic usage :::demo Bind a variable to `v-model` in `` element and you are set. ```html ``` ::: ### Disabled :::demo The `disabled` attribute accepts a `boolean`, and if the value is `true`, the component is disabled. If you just need to control the value within a range, you can add `min` attribute to set the minimum value and `max` to set the maximum value. By default, the minimum value is `0`. ```html ``` ::: ### Steps Allows you to define incremental steps. :::demo Add `step` attribute to set the step. ```html ``` ::: ### Attributes | Attribute | Description | Type | Accepted Values | Default | |----| ----| ---| ----| -----| |value | binding value| number | — | — | |min | the minimum allowed value | number | — | 0 | |max | the maximum allowed value | number | — | `Infinity` | |step | incremental step | number | — | 1 | |size | size of the component | string | large/small| — | |disabled| whether the component is disabled | boolean | — | false | ### Events | Event Name | Description | Parameters | |----| ---- | -----| |change | triggers when the value changes | value after change |