Files
moeka-project/app/composables/count.ts
T
2024-12-02 20:49:31 +08:00

17 lines
237 B
TypeScript

export function useCount() {
const count = useState('count', () => Math.round(Math.random() * 20))
function inc() {
count.value += 1
}
function dec() {
count.value -= 1
}
return {
count,
inc,
dec,
}
}