diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-03-19 16:06:10 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2021-03-19 16:06:10 +0100 |
commit | d383bd08f0266406d4b0c9eb68c76e62c9d4a460 (patch) | |
tree | 711ff41a90ca71d3fce90c2351afcd2ca1807144 /src/views | |
parent | 4410f2e46cbf961f2100038b53426bd07aebc4e9 (diff) |
feat: get emails
Diffstat (limited to 'src/views')
-rw-r--r-- | src/views/Home.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/views/Home.vue b/src/views/Home.vue index 28da86b..e507ef8 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -15,11 +15,15 @@ export default { }, mounted() { this.$store.dispatch('get_commits'); + this.$store.dispatch('get_emails'); }, computed: { commits: () => { return this.$store.get.commits; - } + }, + emails: () => { + return this.$store.get.emails; + }, } } </script> |