Use events on SingleSelect instead of watching the model value

This commit is contained in:
Johannes Zellner
2025-04-08 17:36:44 +02:00
parent 9957739dc4
commit cbe81a8f0a
2 changed files with 19 additions and 29 deletions

View File

@@ -90,8 +90,12 @@ onMounted(async () => {
<div v-else>
<SettingsItem>
<div style="display: flex; align-items: center;">{{ $t('settings.appstoreAccount.description') }}</div>
<Button @click="onOpenRegistrationDialog()">{{ $t('settings.appstoreAccount.setupAction') }}</Button>
<div style="display: flex; align-items: center;">
{{ $t('settings.appstoreAccount.description') }}
</div>
<div style="display: flex; align-items: center;">
<Button @click="onOpenRegistrationDialog()">{{ $t('settings.appstoreAccount.setupAction') }}</Button>
</div>
</SettingsItem>
</div>
</div>