初始提交

This commit is contained in:
2026-01-04 11:09:06 +08:00
commit 8fa31df250
1326 changed files with 213907 additions and 0 deletions

18
store/modules/test.js Normal file
View File

@@ -0,0 +1,18 @@
import {
defineStore
} from 'pinia';
export const useTestStore = defineStore({
id: ' test',
state: () => ({
count: 0,
}),
actions: {
increment() {
this.count++;
},
decrement() {
this.count--;
},
},
});