@if (props.options) {
@for (user of props.options; track $index; let trackEven = $even; let i = $index) { {{ user.key }}
@for (userCol of user.fieldGroup; track userCol.key; let oddInnerRow = $odd) { @if (userCol.props.icon) { } {{userCol.name }} @switch (userCol.type) { @case ("toggle") { } } @for (col of userCol.fieldGroup; track $index) { @switch (col.type) { @case ("radio-buttons") { @for (option of col.props.options; track option.value) { {{ option.label }} } } @case ("checkbox") { {{ col.name }} } } } }
}
}