-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
23 lines (23 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Todo List</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.8/css/materialize.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="styles.css">
<script async defer src="https://buttons.github.io/buttons.js"></script>
</head>
<body>
<div id="app">
<app :stored-id="storedId" :stored-data="storedData"
@update-id="updateId" @update-list="updateList">
</app>
</div>
<a class="github-button" href="https://github.com/margaret2/vue-todo-list"
data-icon="octicon-star" data-style="mega" data-count-href="/margaret2/vue-todo-list/stargazers"
data-count-api="/repos/margaret2/vue-todo-list#stargazers_count" data-count-aria-label="# stargazers on GitHub"
aria-label="Star margaret2/vue-todo-list on GitHub">Star</a>
<script src="dist/build.js"></script>
</body>
</html>