Is there any way to update Vue-router
routes programmatically without reloading the page?
I'm loading different route paths based on the language that is selected, e.g.:
{ path: '/' + i18n.t('url_welcome'), name: 'welcome, component: Welcome },
Unfortunately, route paths don't update automatically when the language is changed.