在数据类型JS的事件上使用变量

时间:2018-07-10 11:29:28

标签: javascript events

我有对象作为数据:

export const modules = {
    digger: {
        volume: 0,
        maxCapacity: 100,
        onTick: (state) => {
            if (volume < maxCapacity) {
                volume++;
            }
        }
    }, ....
}

我应该如何使用这些变量?

0 个答案:

没有答案