diff options
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app.vue | 4 |
1 files changed, 3 insertions, 1 deletions
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(); + }); }); }); }, |