Files
YGChatCS/store/modules/app.js
2025-09-04 21:27:58 +08:00

23 lines
327 B
JavaScript

import { defineStore } from "pinia";
export const useAppStore = defineStore("app", {
state() {
return {
title: "",
sceneId: "",
};
},
getters: {},
actions: {
setData(data) {
this.title = data;
},
setSceneId(data) {
this.sceneId = data;
},
},
unistorage: true,
});