From eb364873d236e6bd0aec2c7ad8ad6bdaeafe75f3 Mon Sep 17 00:00:00 2001 From: dhb52 <dhb52@126.com> Date: 星期三, 13 三月 2024 01:18:49 +0800 Subject: [PATCH] ✨ EasyRetry Server 扩展模块 --- src/views/redirect/index.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/redirect/index.vue b/src/views/redirect/index.vue index 15401f8..97a6556 100644 --- a/src/views/redirect/index.vue +++ b/src/views/redirect/index.vue @@ -3,12 +3,12 @@ </template> <script setup> -import { useRoute, useRouter } from 'vue-router' +import { useRoute, useRouter } from 'vue-router'; const route = useRoute(); const router = useRouter(); -const { params, query } = route -const { path } = params +const { params, query } = route; +const { path } = params; -router.replace({ path: '/' + path, query }) +router.replace({ path: '/' + path, query }); </script> -- Gitblit v1.9.3