-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
40 lines (40 loc) · 1.1 KB
/
app.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
const app = new Vue({
el: '#app',
data: {
titleTodo: 'Simple Todo App',
todo: '',
arrTodo: [],
warnText:'',
theDoneTodo: 'todo-done',
notTheDoneTodo: 'item-todo',
},
methods: {
addTodo(){
if(this.todo.length > 0){
this.warnText= '';
this.arrTodo.unshift({
title: this.todo,
isDone: false
});
this.todo = '';
}else{
console.log(this.todo.length);
this.warnText= 'The field cannot be empty!';
}
},
deleteTodo(todo){
var idx = this.arrTodo.indexOf(todo);
this.arrTodo.splice(idx,1);
},
doneTodo(todo){
var idx = this.arrTodo.indexOf(todo);
if(this.arrTodo[idx].isDone){
this.arrTodo[idx].isDone = false;
}else {
this.arrTodo[idx].isDone = true;
this.deleteTodo(todo);
this.arrTodo.push(todo);
}
}
}
});