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 using <${dynamicTag}/> as shown below.
w-body
<${dynamicTag}/>
Old:
// ... getInitialBody(input, out) { return input.renderBody || input.label } //
<button> <div w-body/> </button>
New:
<button> <if(input.renderBody)> <${input.renderBody}/> </if> <else> ${input.label} </else> </button>