Hacker News new | ask | show | jobs
by dimgl 3501 days ago
We're using Vue and its router in production since 1.x, so I'm not sure where you got that impression...
1 comments

I would like to know more about your use of Vue and the router in production. Tips/best case guidelines?
If you have a relatively large app and having URLs makes sense, the router is a no brainer.

No real tips; the vue-router documentation is excellent.

If you're coming from Vue 1, the only thing that did confuse me is that the router hooks have changed. The router now listens on `beforeRouteEnter` and `beforeRouteLeave` and these hooks only get triggered once per route change. Therefore, to listen to query changes on a route you need to watch the `$route` object.