13 lines
313 B
TypeScript
13 lines
313 B
TypeScript
|
import { defineStore } from "pinia";
|
||
|
import { computed, ref } from "vue";
|
||
|
|
||
|
export const useCounterStore = defineStore("counter", () => {
|
||
|
const count = ref(0);
|
||
|
const doubleCount = computed(() => count.value * 2);
|
||
|
function increment() {
|
||
|
count.value++;
|
||
|
}
|
||
|
|
||
|
return { count, doubleCount, increment };
|
||
|
});
|