DemoSliderBasic.vue 231 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <script setup lang="ts"> const sliderValue = ref(30) </script> <template> <VRow> <VCol cols="12"> <VSlider /> </VCol> <VCol cols="12"> <VSlider v-model="sliderValue" /> </VCol> </VRow> </template>