case 'ADD_CHAT_MESSAGE':
const index = state.tasks.findIndex(elm => elm.userid === action.taskid)
const task = state.tasks
return update(
state, { tasks: { index: { $set: action.task } } })
我想在update
函数内使用索引,但我的 IDE 提醒我index
声明 nut 从未使用过。