Answers for "vue csrol top"

1

scroll to top vue

// add scroll to top when a is clicked (routes)
<a @click="scrollToTop(), goToPricing()">Pricing</a>

 methods: {
        scrollToTop() {
            window.scrollTo(0, 0);
        },  goToPricing() {
            this.$router.push('/pricing');
        }
        }
Posted by: Guest on November-10-2020
0

scroll to top vue

<router-link @click.native="$scrollToTop">
Posted by: Guest on November-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language