I am trying payment gateway and i want to redirect user to payment url provided by the quickwallet? Any solution ? Something like FlowRouter.go(url); Thanks in Advance.
Asked
Active
Viewed 667 times
1 Answers
3
FlowRouter does not support redirect to an external url, you need to use window.location.href
to redirect to external route:
window.location.href = 'https://google.com';

kkkkkkk
- 7,628
- 2
- 18
- 31