Do we have router.reload in vue-router?
I see in this pull request : Add a router.reload() Reload with current path and call data hook again But when I try issuing the following command from a Vue component: this.$router.reload() I get this error: Uncaught TypeError: this.$router.reload is not a function I searched in the docs , but could not found anything relevant. Does vue/vue-router provider some functionality like this? The software versions I'm interested in are: "vue": "^2.1.0", "vue-router": "^2.0.3", PS. I know location.reload() is one of the alternatives, but I'm looking for a native Vue option. this.$router.go() does