Skip to content

Commit

Permalink
fix(tasks): fix missing mapGetters 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreBrisorgueil committed Nov 20, 2019
1 parent 9523210 commit 326f851
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/modules/tasks/components/task.component.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,18 @@
</template>

<script>
/**
* Module dependencies.
*/
import { mapGetters } from 'vuex';
/**
* Export default
*/
export default {
name: 'taskComponent',
props: ['item'],
computed: {
...mapGetters(['isLoggedIn']),
},
};
</script>

0 comments on commit 326f851

Please sign in to comment.