[Vuejs]-Vue router automatically adding hashes on path

0👍

I found the problem, I am using one fullpage.js instance for the entire website. so by default it will add a data anchor to all sections in all vue.components if I defined it on the the instance itself using the anchor property. What I had to do instead was use the data-anchor attribute on the markup of the contactForm component to only apply anchors on that component only.

Leave a comment