@if (loading) {
@for (i of getLoadingItems(); track i) {
}
} @else if (items.length === 0) {
} @else {
@for (item of sortedItems; track item.id; let idx = $index) {
@if (item.icon) {
}
{{ item.title }}
@if (item.description) {
{{ item.description }}
}
@if (!$last) {
}
}
}
@if (showNavArrows && canScrollRight) {