[Vuejs]-How to Reload to same Page while sending a parameter?

0👍

They are many way to do this. You may want to use Watch: {} to keep track of certain parameter. It will be trigger once the parameter change and you can re-render the same page with new parameter.
There is also a way called key-binding but it need to bind the key to the component. I personally suggest this one because it will be easy to understand.

Leave a comment