it-tools/src/stores/style.store.ts

6 lines
123 B
TypeScript
Raw Normal View History

2022-04-04 01:52:59 +02:00
import { defineStore } from 'pinia';
export const useStyleStore = defineStore('style', () => ({
isDarkTheme: true,
}));