-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (33 loc) · 978 Bytes
/
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
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.5.3/css/bulma.css">
<link rel="stylesheet" href="./styles.css" />
<title>Vuex: Note-taking</title>
</head>
<body>
<div id="app">
<div class="notes-section">
<div class="columns">
<div class="column has-text-centered">
<strong>Notes</strong>
<div v-for="note in notes" class="notes">
{{ note }}
</div>
</div>
<div class="column has-text-centered">
<strong>Timestamp</strong>
<div v-for="timestamp in timestamps" class="timestamps">
{{ timestamp }}
</div>
</div>
</div>
<input-component></input-component>
</div>
<note-count-component></note-count-component>
</div>
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vuex"></script>
<script src="./main.js"></script>
</body>
</html>