After performing an action in my Vue app, I am looking to redirect to a different page within my single-page application (SPA). However, when I use the code
window.location.href = "/subpage"
, the page refreshes and I end up losing cached data that is managed by my simple storage system.
My objective is to achieve the redirection without causing a page refresh.