Basic range with default min/max.
vue
<p-field label="Brightness" helper="Basic range with default min/max.">
<p-range v-model="brightness" name="brightness" />
</p-field>Shows the current value.
vue
<p-field label="Contrast" helper="Shows the current value.">
<p-range
v-model="contrast"
name="contrast"
:min="0"
:max="100"
:step="5"
show-value
/>
</p-field>Custom min/max range.
vue
<p-field label="Volume" helper="Custom min/max range.">
<p-range v-model="volume" name="volume" :min="0" :max="10" :step="1" show-value />
</p-field>vue
<p-field label="Disabled range" disabled>
<p-range v-model="disabledRange" name="disabled-range" show-value />
</p-field>