diff --git a/components/util/DropDownLink.vue b/components/util/DropDownLink.vue index 454d18e..060a2a0 100644 --- a/components/util/DropDownLink.vue +++ b/components/util/DropDownLink.vue @@ -19,6 +19,11 @@ function onClick(event: Event) { navigateTo(currentUrl.value) } } + +watch(currentUrl, (url) => { + navigateTo(url) +}) +