> For the complete documentation index, see [llms.txt](https://vuido.mimec.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vuido.mimec.org/built-in-components/widgets/spinbox.md).

# Spinbox

An input widget for editing numeric values.

Spinbox supports the `v-model` directive.

## Attributes

### min

type: Number

The minimum value of the spin box.

### max

type: Number

The maximum value of the spin box.

### value

type: Number

The current value of the spin box.

## Events

### change

Emitted when the current value is changed. The current value is passed as an argument.

## Example

```markup
<Spinbox min="0" max="100" v-model="spinbox"/>
```
