.item-rows
div.items(v-resize="500", @resized="currentWidth = $event.width")
template(v-for="item in itemsToShow(showAll)")
slot(
name="item",
:item="item",
)
div(v-if="items.length === 0")
p(v-once) {{ noItemsLabel }}
.btn-flat.btn-show-more(
@click="showAll = !showAll",
v-if="items.length > itemsPerRow()"
) {{ showAll ? $t('showLess') : $t('showMore') }}
div.fill-height(v-else)