Router-view does not refresh on Router-link
Post by: syed hussain in All
Summary
When using the router-view with a router-link, the Browser URL will reload but the page will not refresh with the updated contents.
To remedy this, simply add the following in the router-view:
<router-view :key="$route.fullPath" />
This will enable the page to reload in a Vue.js SPA.
Tags: