From c73f9acbac52575ab1faa9472b3a51456918d1f7 Mon Sep 17 00:00:00 2001 From: 88-debug <51875412+88-debug@users.noreply.github.com> Date: Sat, 11 Feb 2023 19:48:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=8C=89=20`ESC`=20?= =?UTF-8?q?=E9=80=80=E5=87=BA=E5=85=A8=E5=B1=8F=E5=90=8E=EF=BC=8C=E5=B7=A5?= =?UTF-8?q?=E5=85=B7=E6=A0=8F=E6=8C=89=E9=92=AE=E6=96=87=E6=A1=88=E5=B1=95?= =?UTF-8?q?=E7=A4=BA=E9=97=AE=E9=A2=98=20(#437)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: 修复按ESC退出全屏后,工具栏按钮文案展示问题 --- src/layout/components/tag/index.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/layout/components/tag/index.vue b/src/layout/components/tag/index.vue index bebbc9b1f..e164ec960 100644 --- a/src/layout/components/tag/index.vue +++ b/src/layout/components/tag/index.vue @@ -490,6 +490,11 @@ watch([route], () => { dynamicTagView(); }); +watch(isFullscreen, () => { + tagsViews[6].icon = Fullscreen; + tagsViews[6].text = $t("buttons.hswholeFullScreen"); +}); + onMounted(() => { useResizeObserver( scrollbarDom,