diff --git a/client/src/layouts/Default.vue b/client/src/layouts/Default.vue index d7861e6..b982fc5 100644 --- a/client/src/layouts/Default.vue +++ b/client/src/layouts/Default.vue @@ -160,7 +160,9 @@ export default { }, watch: { - $route() { + $route(to, from) { + if (from.params.region === to.params.region && from.params.name === to.params.name) + return this.apiCall() } },