feat: 配置代码优化

This commit is contained in:
duanshuwen
2025-08-12 19:59:21 +08:00
parent c7275f504f
commit a42f7b4258
8 changed files with 4379 additions and 77 deletions

View File

@@ -2,11 +2,17 @@ import { defineStore } from "pinia";
export const useAppStore = defineStore("app", {
state() {
return {};
return {
title: "",
};
},
getters: {},
actions: {},
actions: {
setData(data) {
this.title = data;
},
},
unistorage: true,
});