Skip to content

Commit

Permalink
Refactor the AddTask component in tthe Header component.
Browse files Browse the repository at this point in the history
  • Loading branch information
smaboshe committed Jul 17, 2021
1 parent d7a82fc commit af0a017
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/views/Home.vue
@@ -1,7 +1,5 @@
<template>
<div v-show="showAddTask">
<AddTask @add-task="addTask" />
</div>
<AddTask v-show="showAddTask" @add-task="addTask" />

<Tasks :tasks="tasks" @delete-task="deleteTask" @toggle-reminder="toggleReminder" />
</template>
Expand Down

0 comments on commit af0a017

Please sign in to comment.