Files
YGChatCS/src/store/modules/selectedDate.js
2025-10-27 21:19:09 +08:00

18 lines
268 B
JavaScript

import { defineStore } from "pinia";
export const useSelectedDateStore = defineStore("selectedDate", {
state() {
return {
selectedDate: {},
};
},
actions: {
setData(data) {
this.selectedDate = data;
},
},
unistorage: true,
});