-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
53 lines (51 loc) · 1.45 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
var app = new Vue({
el: '#app',
data: {
tasks: [
{ description: "Brush teeth", completed: false, show: true },
{ description: "Go to dentist", completed: true, show: true },
{ description: "Go to sleep", completed: false, show: true },
{ description: "Go to work", completed: false, show: true },
{ description: "Be awesome", completed: false, show: true }
],
newTask: '',
showCompleted: true,
showNotCompleted: true
},
methods: {
addTask() {
this.tasks.push(
{ description: this.newTask, completed: false, show: true }
);
// Empty out the task so the input field gets cleared
this.newTask = '';
},
markCompleted(task) {
return task.completed = true;
},
filterOpen() {
for (let i=0; i < this.tasks.length; i++){
if (this.tasks[i].completed) {
this.tasks[i].show = false;
}
}
},
filterCompleted() {
for (let i=0; i < this.tasks.length; i++){
if (!this.tasks[i].completed) {
this.tasks[i].show = false;
}
}
},
showAllTasks() {
for (let i=0; i < this.tasks.length; i++){
this.tasks[i].show = true;
}
}
},
computed: {
incompleteTasks() {
return this.tasks.filter(task => !task.completed);
}
}
})