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

824 B

state
state
value
0

Rounded tooltip

Vuero provides a customisable <Slider /> component. You can check the plugin documentation on Github. Use the has-rounded-tooltipclass on the <VField /> component to show a rounded tooltip.

<script setup lang="ts">

const value = ref(0)
</script>

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