default
{{#default()}}BLOCK{{/default}}
Renders BLOCK
if no case blocks within the switch resolved.
{{#switch(user.type)}}
{{#case("admin")}}
<button value="edit"/>
{{/case}}
{{#case("manager")}}
<button value="view">
{{/case}}
{{#default()}}
You do not have permission!
{{/default}}
{{/switch}}
Parameters
- BLOCK
{sectionRenderer(context, helpers)}
:a template to be rendered.
Use
The default
helper is contextual inside of a switch block. It acts as a fall-through in case none of the case helpers resolved.
For more information on how {{#default()}}
is used check: