8 lines
242 B
TypeScript
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 };
|
|
});
|