mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 16:03:09 +02:00
ヘッダーの戻るボタンがページリロードすると消える問題を修正
This commit is contained in:
parent
62591e0e7a
commit
7353d729d7
1 changed files with 5 additions and 2 deletions
|
@ -42,8 +42,11 @@ export default defineComponent({
|
||||||
},
|
},
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
$route(to, from) {
|
$route: {
|
||||||
this.canBack = (window.history.length > 0 && !['index'].includes(to.name));
|
handler(to, from) {
|
||||||
|
this.canBack = (window.history.length > 0 && !['index'].includes(to.name));
|
||||||
|
},
|
||||||
|
immediate: true
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue