feat(announcement): お知らせの既読処理にチュートリアル受講を要求できるように (MisskeyIO#753)

This commit is contained in:
あわわわとーにゅ 2024-10-19 03:22:05 +09:00 committed by GitHub
parent c47140eab7
commit d005daae84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
30 changed files with 130 additions and 20 deletions

View file

@ -167,6 +167,7 @@ const props = defineProps<{
}>();
const emit = defineEmits<{
(ev: 'done'): void;
(ev: 'closed'): void;
}>();
@ -179,6 +180,7 @@ watch(page, (to) => {
//
if (to === 6) {
claimAchievement('tutorialCompleted');
emit('done');
}
});