-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 1.29 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.min.js"></script>
<title>ToDo App - Beginner</title>
</head>
<body>
<div id="app">
<h1>ToDo App - Beginner</h1>
<h3>A VueJS app built for Software Saturdays Fall 2021.</h3>
<h3>For more information, visit our <a href="https://purdueieee.org/software">website</a>.</h3>
<hr />
<h3>Current To-Do List</h3>
<todo-list v-on:add="new_todo">
<todo-item v-for="item in todolist" v-bind:key="item.id" v-bind:todo="item" v-on:delete="handle_delete" v-on:edit="handle_edit" v-on:done="handle_done"></todo-item>
</todo-list>
<hr />
<h3>Finished To-Do List</h3>
<div class="todo-list-wrapper">
<todo-finished v-for="item in finished_todo" v-bind:key="item.id" v-bind:todo="item" v-on:delete="finished_handle_delete" v-on:restore="new_todo"></todo-finished>
</div>
</div>
</body>
<script src="main.js"></script>
</html>