[Vuejs]-How could I pass values from a file to another in Vue?

0👍

If you using SPA then put values to $store. If you using redirection then store value in localStorage via localStorage.setItem() and access it on another page using localStorage.getItem(). All should be done in saveRequest() method.

👤Daniel

Leave a comment