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

736 B

state
state
value
54

Curved tooltip

Use the has-curved-tooltip class on the <VField /> component to show a curved shaped tooltip. Supports bigger values than the rounded tooltip.

<script setup lang="ts">

const value = ref(0)
</script>

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