Files
filecodebox/fcb-fronted/src/stores/config.ts
T

8 lines
242 B
TypeScript

import { defineStore } from 'pinia';
import {ref} from "vue";
export const useConfigStore = defineStore('config', () => {
const config:any = ref(JSON.parse(localStorage.getItem('config') || '{}') || {}); // 配置
return { config };
});