vue-scrollto
vue-scrollto copied to clipboard
Support :target pseudo-class
trafficstars
Native page internal anchors add a hash to the url (like #section1), wich applies the :target pseudo class to the target element, and thus enables styling it.
Would the same functionality be possible with vue-scrollto?
You can hook into the onDone callback and use vue to toggle a class on any element.
We can also use location:
VueScrollTo.scrollTo(el, { onDone: () => location.replace('#section1') })
this will activate the :target Sorry for necro.