Hiding the Arrow
To hide the arrow, you can use the hideArrow
prop in the VTour
component.
vue
<script setup lang='ts'>
// ...
const steps = [...];
</script>
<template>
<VTour :steps="steps" autoStart backdrop/>
<VTour :steps="steps" autoStart hideArrow/>
...
</template>
Target
INFO
By default, the arrow is displayed.