23 lines
465 B
TypeScript
23 lines
465 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 };
|
|
},
|
|
{
|
|
persist: true,
|
|
},
|
|
);
|
|
|
|
if (import.meta.hot) {
|
|
import.meta.hot.accept(acceptHMRUpdate(useCounterStore, import.meta.hot));
|
|
}
|