Initial commit

This commit is contained in:
Mindboost
2025-07-01 10:53:26 +00:00
commit 38050e5c69
416 changed files with 48708 additions and 0 deletions

16
stores/counter.js Normal file
View File

@@ -0,0 +1,16 @@
// stores/counter.js
import { defineStore } from 'pinia'
export const useCounterStore = defineStore('counter', {
state: () => {
return { count: 20 }
},
// could also be defined as
// state: () => ({ count: 0 })
actions: {
increment (a) {
this.count = a
}
},
persist: true
})