diff --git a/frontend_nuxt/components/MenuComponent.vue b/frontend_nuxt/components/MenuComponent.vue index b91b50772..3b0876a07 100644 --- a/frontend_nuxt/components/MenuComponent.vue +++ b/frontend_nuxt/components/MenuComponent.vue @@ -210,17 +210,13 @@ export default { const gotoCategory = (c) => { const value = encodeURIComponent(c.id ?? c.name) - router.push({ path: '/', query: { category: value } }).then(() => { - window.location.reload() - }) + router.push({ path: '/', query: { category: value } }) handleItemClick() } const gotoTag = (t) => { const value = encodeURIComponent(t.id ?? t.name) - router.push({ path: '/', query: { tags: value } }).then(() => { - window.location.reload() - }) + router.push({ path: '/', query: { tags: value } }) handleItemClick() } diff --git a/frontend_nuxt/pages/index.vue b/frontend_nuxt/pages/index.vue index b15658ddc..8b96bbeb4 100644 --- a/frontend_nuxt/pages/index.vue +++ b/frontend_nuxt/pages/index.vue @@ -113,18 +113,17 @@