Created
March 5, 2019 05:37
-
-
Save RuNpiXelruN/2e1dd86340d169075a12dbe98e0ed259 to your computer and use it in GitHub Desktop.
simple JS timer countdown
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
timer () { | |
setTimeout(() => { | |
if (this.timeleft === 1) { | |
this.$router.push('/quote/offer') | |
return | |
} | |
this.timeleft-- | |
this.timer() | |
}, 1000) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment