dynamic currency symbols and integrated datetime picker

This commit is contained in:
2026-02-17 23:53:45 +02:00
parent fa7a29619c
commit 7912c39090
5 changed files with 77 additions and 34 deletions

View File

@@ -155,7 +155,7 @@
:min="0"
:step="1"
:precision="2"
prefix="$"
:prefix="getCurrencySymbol()"
@update:model-value="saveSettings"
/>
</div>
@@ -241,7 +241,7 @@ import { useSettingsStore } from '../stores/settings'
import { useToastStore } from '../stores/toast'
import AppNumberInput from '../components/AppNumberInput.vue'
import AppSelect from '../components/AppSelect.vue'
import { LOCALES, getCurrencies } from '../utils/locale'
import { LOCALES, getCurrencies, getCurrencySymbol } from '../utils/locale'
const settingsStore = useSettingsStore()
const toastStore = useToastStore()