We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The w-body attribute is deprecated in favor of the <${dynamicTagname}/> syntax.
w-body
<${dynamicTagname}/>
getInitialBody(input, out) { return input.renderBody || input.label }
<button> <span w-body/> </button>
…becomes:
<button> <if(input.renderBody)> <${input.renderBody}/> </if> <else> ${input.label} </else> </button>