1๐
โ
As per my understanding, You want to slightly change the current route path without refreshing/reloading the page. If Yes, You can achieve that by using history.replaceState()
API.
history.replaceState({}, '', this.$route.path + '/' + <your product name>)
Source:stackexchange.com