I would like to pass data when navigating from one route to another, but the data shouldn't be shown to the user in the URL, as it is with route parameters. Instead, I want the data to stay "hidden" from the user, since, in my case, I want to pass an authentication key (which is pretty long and shouldn't necessarily be shown to the user).
Is this achievable using router.push()
?