[Vuejs]-Vue ssr route.params are being taken from another request

0👍

Fixed that by replacing route.path if it doesn’t equal to request.path, but if anyone knows better solutions, please write it here.
Thanks!

0👍

There is not enough context to figure out the issue. Seems like you are polluting Vue instance with all request. Most probably you new Vue() instance is singleton, i.e. in each node/server request, you are using same instance of Vue.

Leave a comment