ヘッダーの戻るボタンがページリロードすると消える問題を修正

This commit is contained in:
syuilo 2020-11-03 20:28:38 +09:00
parent 62591e0e7a
commit 7353d729d7

View file

@ -42,9 +42,12 @@ export default defineComponent({
}, },
watch: { watch: {
$route(to, from) { $route: {
handler(to, from) {
this.canBack = (window.history.length > 0 && !['index'].includes(to.name)); this.canBack = (window.history.length > 0 && !['index'].includes(to.name));
}, },
immediate: true
},
}, },
mounted() { mounted() {