mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-29 19:09:13 -04:00
6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
![]() |
import { defineStore } from 'pinia';
|
||
|
|
||
|
export const useStyleStore = defineStore('style', () => ({
|
||
|
isDarkTheme: true,
|
||
|
}));
|