mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 08:03:34 +09:00
722 B
722 B
state
| state | ||||
|---|---|---|---|---|
|
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>