main
header-blue
b-container(v-if="loading")
b-overlay(:show="true" spinner-large)
b-container(v-else)
.commit
h2 Commits found {{ commits.length }}
.commit(style="padding: 50px" v-if="loading")
b-overlay(:show="true" spinner-large)
commit-card(
v-else
v-for="i in commits" :key="i.hash" :data="i"
:author="emails[i.author_email]"
:committer="emails[i.committer_email]"
)