Refactor: Extract utils, cleanup timer logic, fix share screenshot

This commit is contained in:
2026-02-11 07:01:32 +01:00
parent d68c4a6c3d
commit 6854fe39e5
10 changed files with 469 additions and 509 deletions

View File

@@ -1,11 +1,10 @@
<script setup>
import { computed, ref } from 'vue';
import { usePuzzleStore } from '@/stores/puzzle';
import { useTimer } from '@/composables/useTimer';
import { formatTime } from '@/utils/timeUtils';
import { useI18n } from '@/composables/useI18n';
const store = usePuzzleStore();
const { formatTime } = useTimer();
const { t } = useI18n();
const isVisible = ref(false);