Hi,
I'm currently using vue-scrollactive with a custom selector string so that I can use it to scroll a div with overflow. Code looks as as follows:
Navigation Bar
<scrollactive class="my-nav" scrollContainerSelector="#main-scrollable-content">
<a href="#intro" class="scrollactive-item nav-item ">
Intro
</a>
<a href="#summary" class="scrollactive-item nav-item ">
Summary
</a>
</scrollactive>
Overflow Div
<div id="main-scrollable-content" style="{height:'95vh', overflow-y :'auto'}">
<div id='intro' />
<div id='summary' />
</div>
I'm getting an issue where clicking on a scrollactive item does scroll down and activate the correct href but it immediately jump back to the top. See Gif:

Would appreciate any help solving this! Happy to submit a PR if someone could point me in the right direction.
Thanks.