From ec161b7e9b595e5ee94db44a884f3d63c6bb8eb6 Mon Sep 17 00:00:00 2001 From: tamaina Date: Sun, 5 Sep 2021 00:59:26 +0900 Subject: [PATCH] =?UTF-8?q?=E9=96=89=E3=81=98=E3=81=AA=E3=81=91=E3=82=8C?= =?UTF-8?q?=E3=81=B0100ms=E5=BE=8C=E3=82=BF=E3=82=A4=E3=83=A0=E3=83=A9?= =?UTF-8?q?=E3=82=A4=E3=83=B3=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/pages/share.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/client/pages/share.vue b/src/client/pages/share.vue index 192237f0b3..70a9661dd0 100644 --- a/src/client/pages/share.vue +++ b/src/client/pages/share.vue @@ -166,7 +166,12 @@ export default defineComponent({ methods: { close() { - window.close() + window.close(); + + // 閉じなければ100ms後タイムラインに + setTimeout(() => { + this.$router.push('/'); + }, 100); } } });