lida-app/src/plugins/pinia/store/SettingStore.ts
minglipro 921d454640
feat:初始提交
- 新建项目结构和基础配置
- 添加用户登录和车号查询功能
- 实现消息提示和加载指令
- 配置路由和全局状态管理
2025-08-20 09:08:46 +08:00

18 lines
332 B
TypeScript

import { defineStore } from 'pinia';
import { useColorMode } from '@vueuse/core';
const SettingStore = defineStore('Setting', {
state: () => {
const theme = useColorMode({
attribute: 'theme',
});
return { theme: theme.system };
},
getters: {},
actions: {},
persist: true,
});
export { SettingStore };