> For the complete documentation index, see [llms.txt](https://iron-network.gitbook.io/vuely/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://iron-network.gitbook.io/vuely/vuely-vuejs/ui-components/slider.md).

# Slider

The `v-slider` component is a better visualization of the number input. It is used for gathering numerical user data.

```markup
<v-slider
  v-model="volume"
  append-icon="volume_up"
  prepend-icon="volume_down"
  label="Volume"
></v-slider>
<v-slider v-model="value1" step="0"></v-slider>
<v-slider v-model="value2" step="0" disabled></v-slider>
```
