drawing-back/src/stores/counter.ts

15 lines
318 B
TypeScript
Raw Normal View History

2024-01-08 03:56:23 +00:00
// stores/counter.ts
import { defineStore } from 'pinia';
export const useCounterStore = defineStore('counter', {
state: () => {
return { count: 0 };
},
// 也可以这样定义
// state: () => ({ count: 0 })
actions: {
increment() {
this.count++;
},
},
});