Remove example store

This commit is contained in:
Matt Isenhower 2022-05-08 20:39:16 -07:00
parent 8a4ef94bed
commit c9d4199397

View File

@ -1,16 +0,0 @@
import { defineStore } from 'pinia'
export const useCounterStore = defineStore({
id: 'counter',
state: () => ({
counter: 0
}),
getters: {
doubleCount: (state) => state.counter * 2
},
actions: {
increment() {
this.counter++
}
}
})