diff options
Diffstat (limited to 'src/components/TutorialPane.vue')
| -rw-r--r-- | src/components/TutorialPane.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/TutorialPane.vue b/src/components/TutorialPane.vue index 894d834..c37611d 100644 --- a/src/components/TutorialPane.vue +++ b/src/components/TutorialPane.vue @@ -1,7 +1,9 @@ <template> <div :style="styles" class="p-2 flex flex-col justify-between"> <div class="flex"> - <h2 class="text-center mb-2 mx-auto">{{stage == 0 ? 'Welcome' : 'Tutorial'}}</h2> + <h2 class="text-center mb-2 mx-auto"> + {{stage == 0 ? 'Welcome' : `Tutorial (${stage} / ${lastStage + 1})`}} + </h2> <close-icon @click.stop="onClose" class="block w-6 h-6 hover:cursor-pointer"/> </div> |
