Scroll to Element
To disable scrolling, you can use the noScroll
prop in the VTour
component.
vue
<script setup lang='ts'>
// ...
const steps = [...];
</script>
<template>
<VTour :steps="steps" autoStart saveToLocalStorage='step'/>
<VTour :steps="steps" autoStart noScroll/>
...
</template>
INFO
By default, scrolling is enabled.