[Vuejs]-Refactoring to async with SetTimeout Vuex Action

0👍

So theres already two answers to this question.

This one:
.then(resp => setTimeout(resolve, 1000){...

from here

and:

.then(promiseTimeout(2000)).then

from here

Leave a comment