22 lines
429 B
TypeScript
22 lines
429 B
TypeScript
import { defineStore } from 'pinia'
|
|
import { ref, computed } from 'vue'
|
|
|
|
export const useCounterStore = defineStore('counter', () => {
|
|
const count = ref(0)
|
|
|
|
const doubleCount = computed(() => count.value * 2)
|
|
|
|
function increment() {
|
|
count.value++
|
|
}
|
|
|
|
function decrement() {
|
|
count.value--
|
|
}
|
|
|
|
function reset() {
|
|
count.value = 0
|
|
}
|
|
|
|
return { count, doubleCount, increment, decrement, reset }
|
|
}) |