Skip to content

Commit

Permalink
Add some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Richter committed Apr 12, 2018
1 parent 4ebaffe commit 8fbf32f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/ListView/_ListView.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<template>
<div>
<!-- slot example -->
<the-header>
VueDO
<template slot="sub-header">Vue2 basic demo</template>
</the-header>

<!-- computed properties -->
<div class="four column centered row">
<p class="column tasks">
Completed Tasks:
Expand All @@ -16,7 +18,7 @@
</p>
</div>

<!-- v-for over array with key, v-bind todo -->
<!-- v-for over array with key, v-bind -->
<todo-item v-for="(todo, index) in todos" :key="index"
@delete-todo="deleteTodo"
@complete-todo="completeTodo"
Expand Down

0 comments on commit 8fbf32f

Please sign in to comment.