Skip to content

Commit

Permalink
Add board introduction view.
Browse files Browse the repository at this point in the history
  • Loading branch information
sustained committed Feb 26, 2019
1 parent 6630751 commit 4e53e2b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions src/views/BoardIntroduction.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<template>
<div v-show="boardIsEmpty">
<p>Board is empty!</p>
<p>Show guide/introduction?</p>
<p>Offer to create a board from a template?</p>
<p>Etc.</p>

<ul>
<li>
<router-link to="create/group">Create Group</router-link>
</li>
<li>
<router-link to="create/list">Create List</router-link>
</li>
<li>
<router-link to="create/card" disabled>Create Card</router-link>
</li>
</ul>
</div>
</template>

<script>
import { mapGetters } from "vuex";
export default {
computed: mapGetters(["boardIsEmpty"])
};
</script>

<style scoped>
</style>

0 comments on commit 4e53e2b

Please sign in to comment.