vue-router navigate to the same route and re-run mounted hook
问题 How can I naviagte to the current route using router-link and re-run mounted hook? HTML <!-- Include the library in the page --> <script src="https://unpkg.com/vue/dist/vue.min.js"></script> <script src="https://unpkg.com/vue-router"></script> <!-- App --> <div id="app"> <nav> <router-link :to="{ name: 'home' }" exact>Home</router-link> <router-link :to="{ name: 'about' }" @click.native.prevent="router.push({ name: 'about' })">About</router-link> </nav> <router-view :key="$route.fullPath"><