From b0541be0b8b13ad22c46b4b10003f4f8e4ad35c9 Mon Sep 17 00:00:00 2001 From: LiuHao <liuhaoai545@gmail.com> Date: 星期一, 15 四月 2024 13:04:15 +0800 Subject: [PATCH] fix 修复菜单搜索下方出现白色区域 --- src/components/RuoYiGit/index.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/RuoYiGit/index.vue b/src/components/RuoYiGit/index.vue index 3682250..ad27808 100644 --- a/src/components/RuoYiGit/index.vue +++ b/src/components/RuoYiGit/index.vue @@ -1,13 +1,13 @@ <template> - <div> - <svg-icon icon-class="github" @click="goto" /> - </div> + <div> + <svg-icon icon-class="github" @click="goto" /> + </div> </template> <script setup> const url = ref('https://gitee.com/dromara/RuoYi-Vue-Plus'); function goto() { - window.open(url.value) + window.open(url.value); } </script> -- Gitblit v1.9.3