[Vuejs]-How do I stay on the second form when the page is reloaded? Vue.js

0👍

You can keep step inside the session storage so that the value will not be lost while reloading.

To set the value:

sessionStorage.setItem("step", step)

To retrieve the value:

sessionStorage.getItem("step")

Leave a comment