Files
jnpf_app/store/modules/test.js

18 lines
224 B
JavaScript
Raw Permalink Normal View History

2026-01-04 11:09:06 +08:00
import {
defineStore
} from 'pinia';
export const useTestStore = defineStore({
id: ' test',
state: () => ({
count: 0,
}),
actions: {
increment() {
this.count++;
},
decrement() {
this.count--;
},
},
});