mirror of
https://github.com/gotson/komga.git
synced 2026-04-22 06:50:51 +02:00
11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
// Utilities
|
|
import {defineStore} from 'pinia'
|
|
import {useDisplay} from 'vuetify'
|
|
|
|
export const useAppStore = defineStore('app', {
|
|
state: () => ({
|
|
drawer: !useDisplay().mobile.value.valueOf(),
|
|
theme: 'system',
|
|
}),
|
|
persist: true,
|
|
})
|