We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
debugger
log
1
This helper component can hit the breakpoint on render and from there you can inspect the components tree, and also the model.
ul > each(users) { debugger; li > '~[name]' }
2
This helper component can output the expressions result to the console.
ul > each(users) { log (id, name); li > '~[name]' }
3
🔗 WebStore
🏁