We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17df116 commit 349e286Copy full SHA for 349e286
playground/src/ranges/05Vertical.vue
@@ -3,9 +3,9 @@ import { h, ref } from 'vue'
3
import type { RangeData } from 'vue-range-multi'
4
5
const model = ref<RangeData<string>[]>([
6
- { data: 'disabled', value: 1, disabled: true },
7
- { data: 'random1', value: 3 },
8
- { data: 'unremovable', value: 6, unremovable: true },
+ { data: 'disabled', value: 2, disabled: true },
+ { data: 'random1', value: 4 },
+ { data: 'unremovable', value: 8, unremovable: true },
9
])
10
function handleAddData(value: number) {
11
return {
@@ -26,7 +26,7 @@ function handleAddData(value: number) {
26
</div>
27
<Range
28
v-model="model"
29
- class="h-60 pl-80 pr8"
+ class="h-60 pl-20 pr8"
30
:max="10"
31
addable
32
vertical
0 commit comments