DemoSliderStep.vue 174 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 <script lang="ts" setup> const value = ref(0) </script> <template> <VSlider v-model="value" :min="0" :max="1" :step="0.2" thumb-label /> </template>