Files
oa/documentation/plugins/slider/slider-multiple-documentation.md
2025-05-24 01:49:48 +09:00

722 B

state
state
value
16
62

Multiple handles

The <Slider /> component can render multiple tooltips when passing an array to its v-model property.

<script setup lang="ts">

const value = ref([16, 62])
</script>

<template>
  <VField v-slot="{ id }" class="has-rounded-tooltip">
    <VControl>
      <Slider :id="id" v-model="value" />
    </VControl>
  </VField>
</template>