suppose an array is like this
qq = [
{
"test":[
[
"",
"321"
],
[
"",
"123"
],
[
"",
"111"
],
[
"",
"222"
],
]
}
];
so today when I use ngfor to output
<ng-container *ngFor="let item of qq; let i = index">
<div *ngFor="let test of item["test"]; let idx = index;">
{{test[0]}}
{{test[1]}}
</div>
</ng-container>
HTML structure will be
<div> 321</div>
<div> 123</div>
<div> 111</div>
<div> 222</div>
but what I want to do today is a structure like this
<div> 321 123</div>
<div> 111 222</div>
is there a way to achieve this?
attach the code:
https://stackblitz.com/edit/a...