From 93aba74463a17e50dca3fd3ef9a2634fa3970f37 Mon Sep 17 00:00:00 2001 From: MeiMei <30769358+mei23@users.noreply.github.com> Date: Sun, 7 Jun 2020 14:01:40 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=A2=E3=82=AB=E3=82=A6=E3=83=B3=E3=83=88?= =?UTF-8?q?=E5=88=87=E3=82=8A=E6=9B=BF=E3=81=88=E5=BE=8C=E3=81=AB=E3=82=A4?= =?UTF-8?q?=E3=83=B3=E3=82=B9=E3=82=BF=E3=83=B3=E3=82=B9=E8=A8=AD=E5=AE=9A?= =?UTF-8?q?=E3=81=AE=E8=A1=A8=E7=A4=BA=E5=80=A4=E3=81=8C=E5=A4=89=E3=82=8F?= =?UTF-8?q?=E3=82=89=E3=81=AA=E3=81=84=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=20Fix=20#6448=20(#6454)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix #6448 * Use nextTick --- src/client/app.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/client/app.vue b/src/client/app.vue index 4cb3c22e65..87e99eba97 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -494,7 +494,9 @@ export default Vue.extend({ ...i, token: token }).then(() => { - location.reload(); + this.$nextTick(() => { + location.reload(); + }); }); }); },