mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-12-12 07:42:51 +00:00
6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
import { defineStore } from 'pinia';
|
|
|
|
export const useStyleStore = defineStore('style', () => ({
|
|
isDarkTheme: true,
|
|
}));
|