15 lines
318 B
TypeScript
15 lines
318 B
TypeScript
|
// stores/counter.ts
|
||
|
import { defineStore } from 'pinia';
|
||
|
|
||
|
export const useCounterStore = defineStore('counter', {
|
||
|
state: () => {
|
||
|
return { count: 0 };
|
||
|
},
|
||
|
// 也可以这样定义
|
||
|
// state: () => ({ count: 0 })
|
||
|
actions: {
|
||
|
increment() {
|
||
|
this.count++;
|
||
|
},
|
||
|
},
|
||
|
});
|