S
S
Smeecy Smeecy2017-05-03 19:37:09
JavaScript
Smeecy Smeecy, 2017-05-03 19:37:09

How to follow a link with a delay?

It is necessary to follow the link in Vuejs after N seconds, how to implement it correctly?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Artem0071, 2017-05-03
@Wekeed

<button @click="toNextPage">Next page</button>
....

methods: {
    toNextPage(){
           setTimeout(function() { this.$router.push('/next') }, 1000);

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question