feat: adding story parts
This commit is contained in:
@@ -1,11 +1,28 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import BoardGameWorkshop from '@/modules/5s/BoardGameWorkshop.vue'
|
import BoardGameWorkshop from '@/modules/5s/BoardGameWorkshop.vue'
|
||||||
|
import { ref } from 'vue'
|
||||||
|
|
||||||
const createdAt = new Date('2025-01-08').toLocaleDateString(undefined, {
|
const createdAt = new Date('2025-01-08').toLocaleDateString(undefined, {
|
||||||
year: 'numeric',
|
year: 'numeric',
|
||||||
month: 'long',
|
month: 'long',
|
||||||
day: 'numeric'
|
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>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|||||||
Reference in New Issue
Block a user