Added global controls

This commit is contained in:
2021-12-19 03:03:37 +03:00
parent 9c881bd430
commit b4a408eddb
15 changed files with 334 additions and 123 deletions

View File

@@ -1,6 +1,7 @@
<template>
<div class="home">
<TheCategoryBar @select="select" />
<GlobalTaskControls />
<TheTaskList :selectedCategory="selectedCategory" />
</div>
</template>
@@ -9,12 +10,14 @@
import { mapState, mapMutations } from 'vuex';
import TheCategoryBar from '@/components/TheCategoryBar.vue';
import GlobalTaskControls from './GlobalTaskControls.vue';
import TheTaskList from './TheTaskList.vue';
export default {
name: 'Home',
components: {
TheCategoryBar,
GlobalTaskControls,
TheTaskList,
},
data() {