18 />
19 </header>
20▶ <section class="main" v-show="state.todos.length">
21 <input
22 id="toggle-all"
· · ·
52 <footer class="footer" v-show="state.todos.length">
53 <span class="todo-count">
54▶ <strong>{{ state.remaining }}</strong>
55 <span>{{ state.remainingText }}</span>
56 </span>
· · ·
55▶ <span>{{ state.remainingText }}</span>
56 </span>
57 <ul class="filters">
· · ·
80 class="clear-completed"
81 @click="removeCompleted"
82▶ v-show="state.todos.length > state.remaining"
83 >
84 Clear completed
· · ·
116 },
117 completed(todos) {
118▶ return todos.filter(function (todo) {
119 return todo.completed
120 })
+ 14 more matches in this file