Оптимизация

This commit is contained in:
2026-02-08 07:39:56 +07:00
parent ca1783fe7d
commit cff7ef1bd1
36 changed files with 353 additions and 384 deletions

View File

@@ -1,4 +1,4 @@
<script setup>
<script setup>
const { t, locale } = useI18n()
const appStore = useAppStore()
@@ -10,8 +10,6 @@ const { confirm } = useConfirm()
const operating = ref(false)
const statusLabel = ref('')
const sleep = (ms) => new Promise(r => setTimeout(r, ms))
const toggleLocale = () => {
const next = locale.value === 'ru' ? 'en' : 'ru'
locale.value = next