support cookies, but with bugs

This commit is contained in:
Julian Freeman
2026-01-13 18:15:58 -04:00
parent 1554be25d2
commit bbcb10b3ca
6 changed files with 75 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ import { ref } from 'vue'
export interface Settings {
download_path: string
cookies_path?: string
theme: 'light' | 'dark' | 'system'
last_updated: string | null
}
@@ -12,6 +13,7 @@ export interface Settings {
export const useSettingsStore = defineStore('settings', () => {
const settings = ref<Settings>({
download_path: '',
cookies_path: '',
theme: 'system',
last_updated: null
})