Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 467 Bytes

reload.md

File metadata and controls

13 lines (9 loc) · 467 Bytes

reload method

FlowRouter.reload();
  • Returns {void}

FlowRouter routes are idempotent. That means, even if you call FlowRouter.go() to the same URL multiple times, it only activates in the first run. This is also true for directly clicking on paths.

So, if you really need to reload the route, this is the method you want.

Further reading