Skip to content

Scroll to Element

To disable scrolling per step, you can use the noScroll option in the Step.

INFO

This feature will be available in version 2.4.0.

vue
<script setup>
  const steps = [{
    target: '[data-step=0]',
    content: 'Text Content',
    noScroll: true
  }];
</script>

INFO

You can enable the highlight effect globally by setting the noScroll prop in the VTour component.

See Documentation

Released under the MIT License.