gruhn / vue-qrcode-reader

A set of Vue.js components for detecting and decoding QR codes.
https://gruhn.github.io/vue-qrcode-reader
MIT License
2.11k stars 334 forks source link

Perform redirection after detecting the QR code #224

Closed VladimirVecera closed 3 years ago

VladimirVecera commented 3 years ago

Once I detect the QR code, I need to load the URL automatically, for example: /data.php?qrcode= ?? How can I do that?

gruhn commented 3 years ago

Just perform regular JavaScript redirect: https://stackoverflow.com/a/11690095

<qrcode-stream @decode="onDecode"></qrcode-stream>
onDecode(url) {
   window.location.href = url
}
Morrisonleary commented 3 years ago

Does anyone have a working example of this working?

gruhn commented 3 years ago

https://codepen.io/gruhn/pen/rNxQPay?editors=1111

Morrisonleary commented 3 years ago

Awesome, thanks!