init source
This commit is contained in:
27
stores/counter.ts
Normal file
27
stores/counter.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
export const useCounterStore = defineStore("counter", () => {
|
||||
const count = ref(0);
|
||||
const name = ref("Counter Store");
|
||||
|
||||
const doubleCount = computed(() => count.value * 2);
|
||||
|
||||
function increment() {
|
||||
count.value++;
|
||||
}
|
||||
|
||||
function decrement() {
|
||||
count.value--;
|
||||
}
|
||||
|
||||
function reset() {
|
||||
count.value = 0;
|
||||
}
|
||||
|
||||
return {
|
||||
count,
|
||||
name,
|
||||
doubleCount,
|
||||
increment,
|
||||
decrement,
|
||||
reset,
|
||||
};
|
||||
});
|
Reference in New Issue
Block a user