[Vuejs]-How to get data from $router in Vue

0👍

Solved in Login.Vue by using the following code:

 if (!Validator.isNullUndefinedEmpty((<any>this).$router.urlQrCode)) {
              this.$router.push((<any>this).$router.urlQrCode);
}

Leave a comment