Is it possible to use ng-repeat with an array of arrays?
ng-repeat
Here\'s my view:
{{item}}<
Your problem lies with this line:
{{i}}
item.items is undefined because item is an array.
item.items
undefined
item
You should enumerate item instead of item.items:
Here's a working Plunk.