This commit is contained in:
kakkokari-gtyih 2024-08-13 13:19:25 +09:00
parent 633dd82475
commit c2ecfd8d35
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ const page = ref(props.initialPage ?? 0);
const currentPageDef = computed(() => { const currentPageDef = computed(() => {
if (page.value > 0 && page.value < MAX_PAGE - 1) { if (page.value > 0 && page.value < MAX_PAGE - 1) {
return tutorialBodyPagesDef[page.value - 1]; return tutorialBodyPagesDef[page.value - 1] ?? null;
} else { } else {
return null; return null;
} }