feat: adding story parts

This commit is contained in:
Julien Calixte
2025-08-07 09:50:20 +02:00
parent 6ba486a216
commit 44344fcc87

View File

@@ -1,11 +1,28 @@
<script setup lang="ts">
import BoardGameWorkshop from '@/modules/5s/BoardGameWorkshop.vue'
import { ref } from 'vue'
const createdAt = new Date('2025-01-08').toLocaleDateString(undefined, {
year: 'numeric',
month: 'long',
day: 'numeric'
})
const storyParts = [
'introduction',
'first-play',
'conclusion-first-play',
'seiri',
'second-play',
'conclusion-second-play',
'seiton',
// until this point, every improvement is only on chess boards
'seiso',
'seiketsu', // now we improve everywhere!
'shitsuke' // aaaand conclusion
]
const storyIndex = ref(0)
</script>
<template>