Deleted the unused ExampleStore

This commit is contained in:
joschuatonn
2024-05-29 11:56:25 +02:00
parent 3c3098f323
commit a225aaace3

View File

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