閉じなければ100ms後タイムラインに
This commit is contained in:
parent
1a675cb283
commit
ec161b7e9b
|
@ -166,7 +166,12 @@ export default defineComponent({
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
close() {
|
close() {
|
||||||
window.close()
|
window.close();
|
||||||
|
|
||||||
|
// 閉じなければ100ms後タイムラインに
|
||||||
|
setTimeout(() => {
|
||||||
|
this.$router.push('/');
|
||||||
|
}, 100);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue