[Vuejs]-How to use dynamic routing in vuejs

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>)

Leave a comment