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