mirror of
https://github.com/Art051/it-tools.git
synced 2025-08-11 19:29:03 +00:00
6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
import { defineStore } from 'pinia';
|
|
|
|
export const useStyleStore = defineStore('style', () => ({
|
|
isDarkTheme: true,
|
|
}));
|