mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-13 09:28:14 +08:00
21 lines
282 B
TypeScript
21 lines
282 B
TypeScript
import { defineStore } from "pinia";
|
|
|
|
const useDevStore = defineStore({
|
|
id: "dev",
|
|
state() {
|
|
return {
|
|
showDev: false,
|
|
magicCount: 0,
|
|
};
|
|
},
|
|
actions: {
|
|
init() {
|
|
this.showDev = false;
|
|
this.magicCount = 0;
|
|
},
|
|
},
|
|
persist: true,
|
|
});
|
|
|
|
export default useDevStore;
|