quasar init

This commit is contained in:
2026-03-28 13:20:25 +01:00
commit ad31b9e789
34 changed files with 9707 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import { defineStore, acceptHMRUpdate } from 'pinia'
export const useCounterStore = defineStore('counter', {
state: () => ({
counter: 0
}),
getters: {
doubleCount: (state) => state.counter * 2
},
actions: {
increment() {
this.counter++
}
}
})
if (import.meta.hot) {
import.meta.hot.accept(acceptHMRUpdate(useCounterStore, import.meta.hot))
}