summaryrefslogtreecommitdiff
path: root/src/views/Home.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/Home.vue')
-rw-r--r--src/views/Home.vue6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/views/Home.vue b/src/views/Home.vue
index c1d9420..3ca1445 100644
--- a/src/views/Home.vue
+++ b/src/views/Home.vue
@@ -6,7 +6,10 @@
b-col(md="8" sm="12")
h2 List of commits
section#commits
+ .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]"
@@ -35,6 +38,9 @@ export default {
emails: function() {
return this.$store.getters.emails;
},
+ loading: function() {
+ return this.$store.getters.loading;
+ }
}
}
</script>