Add week and month view for tasks (#15)

This commit is contained in:
konrad 2018-12-25 22:41:55 +00:00 committed by Gitea
parent e094b654e2
commit d7f7058eef
10 changed files with 1305 additions and 899 deletions

View file

@ -35,6 +35,22 @@
Overview
</router-link>
</li>
<li>
<router-link :to="{ name: 'showTasksInRange', params: {type: 'month'}}">
<span class="icon">
<icon :icon="['far', 'calendar-alt']"/>
</span>
Next Month
</router-link>
</li>
<li>
<router-link :to="{ name: 'showTasksInRange', params: {type: 'week'}}">
<span class="icon">
<icon icon="calendar-week"/>
</span>
Next Week
</router-link>
</li>
<li>
<router-link :to="{ name: 'listTeams'}">
<span class="icon">
@ -115,6 +131,7 @@
namespaces: [],
mobileMenuActive: false,
fullpage: false,
currentDate: new Date(),
}
},
beforeMount() {