From 6331ee9fa9981067ab749f4bb7a27cdee61a8073 Mon Sep 17 00:00:00 2001 From: tobinio Date: Sat, 29 Jun 2024 09:18:04 +0200 Subject: [PATCH] fix: click not happening on mobile --- components/util/DropDownLink.vue | 5 +++++ 1 file changed, 5 insertions(+) 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) +}) +