Presently, the callbacks passed to iterators receive only one argument: vnode.
It'd be very helpful if these all received the standard Javascript arguments, namely: (item, index, array)
See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map#callbackfn
One usage example might be for addProps where you might want to conditionally apply a prop dependent on where it is in the array.
Presently, the callbacks passed to iterators receive only one argument: vnode.
It'd be very helpful if these all received the standard Javascript arguments, namely: (item, index, array)
See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map#callbackfn
One usage example might be for addProps where you might want to conditionally apply a prop dependent on where it is in the array.