Merge branch 'develop' into feat-1714

This commit is contained in:
かっこかり 2024-07-04 18:32:08 +09:00 committed by GitHub
commit aab4fa9394
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
116 changed files with 6003 additions and 4791 deletions

View file

@ -125,15 +125,19 @@ const keymap = computed(() => {
});
function signin() {
os.popup(XSigninDialog, {
const { dispose } = os.popup(XSigninDialog, {
autoSet: true,
}, {}, 'closed');
}, {
closed: () => dispose(),
});
}
function signup() {
os.popup(XSignupDialog, {
const { dispose } = os.popup(XSignupDialog, {
autoSet: true,
}, {}, 'closed');
}, {
closed: () => dispose(),
});
}
onMounted(() => {