How to achieve an overlay like ProductHunt which has a separate URL and opens up on the same page? I am posting an image below for better understanding.

Explanation: The above picture is a screenshot from ProductHunt. Whenever I click on a product(on the home page), instead of redirecting to a different product page, the product is shown in an overlay on top of the current page and it has a separate URL to access.
How can we do this in Vue.js?
Sandeep Panda
co-founder, Hashnode
I am not sure how to do it in Vue, but you can always do
history.pushState()when the overlay is triggered to transition to a new URL.