0

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.

Rashmi
  • 565
  • 2
  • 7
  • 29

1 Answers1

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