[Vuejs]-How to open a vue component in new tab without page load by vue router?

0👍

If I understood your issue correctly: new pages are always going to be loaded, since it’s a vue lifecycle. Vue lifecycles. But what you can do here is to use browser’s local storage. And when the component is mounted for example, you can share the data from your previous page.

Leave a comment