I am trying to get the query parameters in the url.
There doesn\'t seem to be an easy way to do this...
which leaves me with the feeling that I must have mis
In Iron Router 1.0.0, you need to use
this.params.query.YOUR_PARAMETER_NAME
to get it
For example, if you route is /xxx/?a=b
this.params.query.a
outputs 'b'