const [count, actions] = useCounter(20)
const [count, actions, couterState] = useCounter(20, { min: 1, max: 100 })
// 增加计数器
actions.inc()
actions.inc(2)
// 减少计数器
actions.dec()
actions.dec(4)
// 设置计数器为指定值
actions.set(10)
// 重置计数器为初始值(或同时重设初始值)
actions.reset()
actions.reset(12)
// 获取计数器的值,值为 count
acitons.get()