17 lines
409 B
Vue
17 lines
409 B
Vue
|
<template>
|
|||
|
<div class="specimens specimens--text">
|
|||
|
<h2>Slider classification</h2>
|
|||
|
<div class="specimen specimen--single">
|
|||
|
<h3>Range</h3>
|
|||
|
<FormulateInput
|
|||
|
label="How far should we crank it up?"
|
|||
|
type="range"
|
|||
|
min="0"
|
|||
|
max="11"
|
|||
|
:show-value="true"
|
|||
|
help="Whenever we’re allowed to have a party again..."
|
|||
|
/>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</template>
|