标签: javascript events
我有对象作为数据:
export const modules = { digger: { volume: 0, maxCapacity: 100, onTick: (state) => { if (volume < maxCapacity) { volume++; } } }, .... }
我应该如何使用这些变量?