15 lines
248 B
TypeScript

import { defineStore } from 'pinia'
export const useCounterStore = defineStore('counter', {
state: () => ({ count: 0 }),
actions: {
increment() {
this.count++
},
reset() {
this.count = 0
},
},
persist: true,
})