* Fix #6448 * Use nextTick
This commit is contained in:
parent
effeeafe9a
commit
c54f0ac09c
1 changed files with 3 additions and 1 deletions
|
@ -494,7 +494,9 @@ export default Vue.extend({
|
||||||
...i,
|
...i,
|
||||||
token: token
|
token: token
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
location.reload();
|
this.$nextTick(() => {
|
||||||
|
location.reload();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue