v0.8.2
Fixed
-
Stop crashes when we use iterations over basic variables, not related to props.
function Component() { const list = [] return pug` each item in list div(key=item.id)= item.test ` }
In this example we were trying to attach
item.id
anditem.test
to props.