feat:#18 fixed type

This commit is contained in:
Elmar Kresse
2024-07-07 23:08:04 +02:00
parent 5aab024957
commit 059b8ca24b

View File

@ -26,9 +26,9 @@ const primeVue = usePrimeVue();
const emit = defineEmits(["dark-mode-toggled"]); const emit = defineEmits(["dark-mode-toggled"]);
const store = settingsStore(); const store = settingsStore;
const isDark = computed(() => store.isDark); const isDark = computed(() => store().isDark);
</script> </script>