-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (93 loc) · 2.32 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Vue 3 Directives</title>
<style>
body {
line-height: 25pt;
font-size: large;
}
</style>
</head>
<body>
<h1>Week 10 Labs: Vue 3 Directives</h1>
<hr />
<ul>
<li>
Minnesota Cities example - Vue bind keys:
<ul>
<li>
<a
href="https://myverdict.github.io/week10-web-programming-vue/vue-keys/no_key.html"
target="_blank"
>
Without `v-bind:key`
</a>
</li>
<li>
<a
href="https://myverdict.github.io/week10-web-programming-vue/vue-keys/key.html"
target="_blank"
>
With `v-bind:key`
</a>
</li>
</ul>
</li>
<li>
Products page (Vue 3: Options API)
<ul>
<li>
<a
href="https://myverdict.github.io/week10-web-programming-vue/products-from-data/product.html"
target="_blank"
>
Products from data
</a>
</li>
<li>Products from API (Please run the api locally first)</li>
</ul>
</li>
<li>Vue 3 slots: introduction (First Vite app)</li>
<li>
<a
href="https://myverdict.github.io/week10-web-programming-vue/student/student_sign_in.html"
target="_blank"
>
Student Sign-In (Vue 3: Options API)
</a>
</li>
<li>
<a
href="https://myverdict.github.io/week10-web-programming-vue/tracker/activity.html"
target="_blank"
>
Activity Tracker (Vue 3: Options API)
</a>
</li>
<li>
Also see,
<a
href="https://github.com/myverdict/ITEC-lab9-assignment"
target="_blank"
>
Lab 9 assignment repository (Vue 2)
</a>
</li>
</ul>
<hr />
<p>
<i>
ITEC 2560-60: Web Client and Server Programming
<br />
Minneapolis Community and Technical College (MCTC), Minneapolis,
Minnesota
<br />
Prof. Clara James, Fall 2020
<br />
August 25, 2020 to December 15, 2020 (Tuesdays)
</i>
</p>
</body>
</html>