-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (125 loc) · 5.15 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!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">
<title>Vue.js Introduction</title>
<style>
/* For program code, keywords, etc. */
.mono {
font-family: 'Courier New', Courier, monospace;
}
body {
line-height: 25pt;
font-size: large;
}
.youtube {
color: red;
font-weight: bold;
}
/* Long Rightwards Double Arrow for 4th level ul li items */
.fourth-level-li {
list-style-type: '\27F9';
}
.bold-text {
font-weight: bold;
}
</style>
</head>
<body>
<h1>Week 8 Labs: Vue.js Introduction (Vue 3)</h1>
<hr>
<ul>
<li>
Vue 3 Introduction
<ul>
<li>
<a href="https://myverdict.github.io/week1-vuejs/hello-vue/hello_vue3.html" target="_blank">
Hello Vue 3
</a>: created a vue app instance along with data, methods &
computed options; used moustache syntax and event listeners.
</li>
<li>
<a href="https://myverdict.github.io/week1-vuejs/hello-vue/hello_input.html" target="_blank">
Hello input
</a>: used <span class="mono">v-model</span> for 2 way binding
for form inputs along with conditional rendering and event listeners.
</li>
<li>
Task List
<ul>
<li>
<a href="https://myverdict.github.io/week1-vuejs/hello-vue/looping.html" target="_blank">
Task List Display
</a>: used <span class="mono">v-for</span> for looping.
</li>
<li>
<a href="https://myverdict.github.io/week1-vuejs/hello-vue/looping_task_list.html" target="_blank">
Task List Input
</a>: recorded user input and used <span class="mono">v-for</span> to loop & display the list.
</li>
</ul>
</li>
<li>
<a href="https://myverdict.github.io/week1-vuejs/hello-vue/vue-intro-summary/template_tags.html" target="_blank">
Vue 3 summary
</a>: Vue template tags
</li>
</ul>
</li><br>
<li>
Shopping Cart Application
<ul>
<li>
<a href="https://myverdict.github.io/week1-vuejs/hello-vue/cart/cart_vue3.html" target="_blank">
Cart with Vue 3
</a>: Reactive Vue application
</li>
<li>
<a href="https://myverdict.github.io/week1-vuejs/hello-vue/cart/cart_vanilla_js.html" target="_blank">
Cart with Vanilla JS
</a>: Compare with "Cart with Vue 3" code
</li>
<li>
<a href="https://myverdict.github.io/week1-vuejs/hello-vue/cart/cart_vue3_validation.html" target="_blank">
Cart Validation
</a>: in Vue 3 showing error messages for invalid inputs
</li>
<li>
<a href="https://myverdict.github.io/week1-vuejs/hello-vue/cart/cart_vue3_watch.html" target="_blank">
Cart watching
</a>: used the <span class="mono">watch</span> option in Vue 3 that
watches data property and shows error messages for invalid inputs
</li>
</ul>
</li><br>
<li>
<a href="https://myverdict.github.io/week1-vuejs/product/product.html" target="_blank">
Product page
</a>: A single product page using Vue.js
</li><br>
<li>
Random <a href="https://dog.ceo/dog-api/" target="_blank">Dog API</a>
<ul>
<li>
<a href="https://myverdict.github.io/week1-vuejs/api-dog/random_dog_pic.html" target="_blank">
Vue 3
</a>: with API fetching
</li>
<li>
<a href="https://myverdict.github.io/week1-vuejs/api-dog/random_dog_pic_shortcuts.html" target="_blank">
Vue 3 shortcuts
</a>: with API fetching
</li>
</ul>
</li>
</ul>
<hr>
<p>
ITEC 2560-60: Web Client and Server Programming<br>
Minneapolis Community and Technical College (MCTC), Minneapolis, Minnesota<br>
Prof. Clara James, Fall 2020
</p>
</body>
</html>