DemoSliderValidation.vue 256 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <script setup> const value = ref(30) const rules = [v => v <= 40 || 'Only 40 in stock'] </script> <template> <VSlider v-model="value" :error="value > 40" :rules="rules" :step="10" thumb-label="always" show-ticks /> </template>