import {defineStore} from "pinia"; import {useMainLayoutStore} from "~/strores/UseMainLayoutStore"; import dayjs from "dayjs"; export const useDataStore = defineStore('DataStore', { state: () => ({ data: {}, }), actions: { setData(type: string, data: any) { this.data[type] = data }, }, }) export type dataType = { [key: string]: string; };