forked from Code-Pop/Intro-to-Vue-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHowToVue.html
295 lines (269 loc) · 9.03 KB
/
HowToVue.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<!--
In index.html
-->
<!-- Import Vue.js -->
<script src="https://unpkg.com/vue@3"></script>
<!-- Locatie App -->
<div id="app">
<!-- Verder opmaak, posities -->
</div>
<!-- Import App -->
<script src="./main.js"></script>
<!-- Mount App -->
<script>
// positie waar app werkt.
const mountedApp = app.mount('#app')
</script>
<!--
In main.js
-->
<script> // deze regel niet in js. file.
const app = Vue.createApp({
// Variabelen, Variabele array's
data() {
return {
cart:0,
product: 'Socks',
details: ['50% cotton', '30% wool', '20% polyester'],
selectedVariant: 0,
variants: [
{ id: 2234, color: 'green', image: './assets/images/socks_green.jpg' },
{ id: 2235, color: 'blue', image: './assets/images/socks_blue.jpg' },
],
styles: {
color: 'red',
fontSize: '14px'
}
}
},
// Functies
methods: {
addToCart() {
this.cart += 1
},
updateVariant(index) {
this.selectedVariant = index
},
},
// berekeningen op waarden, op te vragen als waarde
//<!-- Computed Properties -->
computed: {
title() {
return this.brand + ' ' + this.product
},
image() {
return this.variants[this.selectedVariant].image
},
}
})
</script> // deze regel niet in js. file.
<!--
--------------------------
Verder opmaak, posities
--------------------------
-->
<template>
<!-- Waarde ophalen en weergeven -->
{{ JavaScript-waarde }}
<!--
bijv.: variabele -> waarde wordt weergegeven op positie
Maar je kan ook bewerkingen doen waar dan de uitkomst van wordt weergegeven
-->
<!-- voorbeeld -->
{{ product }} //geeft de waarde van product weer
{{ brand + ' ' + product }} //geeft de waarde van brand spatie product
<!-- Attribute Binding (waarde ophalen) -->
v-bind:attr="JavaScript-waarde" --> Afgekort: :attr="JavaScript-waarde"
<!-- voorbeeld: -->
<!-- src attribute, verbinden met variabele "image" data -->
<img v-bind:src="image">
<img :src="image">
<!-- href attribute, verbinden met variabele "url" data -->
<a v-bind:href="url">Link</a>
<a :href="url">Link</a>
<!-- Conditional Rendering
-->
<!-- Wel/Niet Renderen -->
v-if="JavaScript-Voorwaarde"
v-else-if="JavaScript-Voorwaarde"
v-else
<!-- voorbeeld: [Alleen wat waar is wordt uitgevoerd]-->
<!-- object weergeven(toepssen), afhankelijk voorwaarde met variabele "voorwaarde" data -->
<p v-if="variabele > 10">Waar</p>
<p v-else>Nietwaar</p>
<!-- Weergeven/Verbergen -->
v-show="JavaScript-Voorwaarde"
<!-- voorbeeld: Wat:
-> waar is wordt uitgevoerd,
-> niet waar krijgt de style "style=display: none;" mee zodat het niet weergegeven wordt, maar wel in de uitvoer staat-->
<!-- Lijst maken (loop) -->
v-for="variabele in waarde-array" <!-- -> variabele te gebruiken binnen de syntax -->
<!-- voorbeeld: -->
<!-- syntax wordt ..x toegepast voor elke loop in v-for -->
<ul>
<li v-for="detail in details">{{ detail }}</li>
</ul>
<!-- gelijk principe, maar bind gelijk de v-bind:key aan de variant.id ; voor later makelijk hergebuik-->
<div v-for="variant in variants" :key="variant.id">{{ variant.color }}</div>
<!-- en nu met teller (index)-->
<div v-for="(variant, index) in variants" :key="variant.id" @mouseover="updateVariant(index)">{{ variant.color }}</div>
<!-- Event Handling -->
v-on:click="javascript-functie-app" of @click="javascript-functie-app"
@mouseover=
<!-- -> javascript-functie-app toevoegen "methods" aan de app data welke uitgevoerd moet worden. -->
<!-- voorbeeld: -->
<button class="button" v-on:click="addToCart">Add to Cart</button>
<button class="button" @click="addToCart">Add to Cart</button>
<div v-for="variant in variants" :key="variant.id" @mouseover="updateImage(variant.image)">{{ variant.color }}</div>
<!-- Class & Style Binding -->
:style="{ CSS_property: JavaScript-Waarde }" <!-- losse waarde -->
:style="{ JavaScript-Waarde }" <!-- style object, onder app.data -->
:class="{ CSS_Class: JavaScript-voorwaarde }" <!-- CSS_Class wordt -->
<!-- toegepast wanneer voorwaarde voldoet (toegevoegd aan eventueel een bestaande class). -->
:class="[JavaScript-voorwaarde ? CSS_Class : CSS_Class]" <!-- voorwaarde, een of andere class toepassen. '' is geen class. -->
:disabled="JavaScript-voorwaarde" <!-- werking uitzetten van wanneer waar -->
<!-- voorbeeld:
Let op: Bij gebruik CSS naam gebruik of: (Camel vs Kebab)
backgroundColor
'background-color'
-->
<div
v-for="variant in variants" :key="variant.id" @mouseover="updateImage(variant.image)"
class="color-circle"
:style="{ backgroundColor: variant.color }"
>
</div>
<button
class="button"
:class="{ disabledButton: !inStock }"
:disabled="!inStock"
@click="addToCart"
>
Add to Cart
</button>
<div :class="[isActive ? activeClass : '']"></div>
</template>
<!--
----------------------
Components & Props
----------------------
-->
<!-- Submap: components -> CompX.js -->
<script> // niet in js file
app.component('comp-x', {
props: { // variabele die als input kunnen dienen
variabele2c: {
type: Boolean
required: true
}
},
template: // Opmaak
/*html*/
`
<div>
.....
</div>
`,
data() {
return {
variabele1c: 'waarde'
}
},
methods: {
methode2c() {
this.$emit('trigger2c', variabele1c)
}
},
computed: {
bereken() {
return this.variabele + ' ' + this.variabele
},
}
})
</script> <!-- niet in js file -->
<!-- In index.html: -->
<!-- plaats Components -->
<comp-x :variabele2c="variabele2g" @trigger2c="methode2g"></comp-x>
<!-- Import Components -->
<script src="./components/CompX.js"></script>
<!-- In main.js: -->
<script> // niet in js file
const app = Vue.createApp({
data() {
return {
variabele2g: true,
cart: [],
...
}
},
methods: {
methode2g(variabele1g) { //variabele1g = variabele1c uit component
this.cart.push(variabele1g)
}
}
})
</script> <!-- niet in js file -->
<!--
--------------
-->
<!-- Input(Form)/Binding (waarde 2 richtingsverkeer (koppelen)) -->
v-model="JavaScript-waarde"
<!-- voorbeeld: -->
<!-- In ComponentInput.js -->
<script> // niet in js file
app.component('review-form', {
template:
// inputbox, verbinden met variabele "name" data
/*html*/
`
<form @submit.prevent="onSubmit">
<label for=""nameid">naamlabel</label>
<input id="nameid" v-model="name" />
<label for="ratingid">Ratinglabel</label>
<select id="ratingid" v-model.number="rating">
<option>3</option>
<option>2</option>
<option>1</option>
</select>
<input type="submit" value="knoptekst">
</form>
`,
data() {
return {
name: '',
rating: null
}
},
methods: {
onSubmit() {
let productReview = {
name: this.name,
rating: this.rating,
}
this.$emit('input-submitted', productReview)
this.name = ''
this.rating = null
}
}
})
</script> <!-- niet in js file -->
<!-- in index.html -->
<!-- plaats input form component-->
<review-form @input-submitted="addInput"></review-form>
<!-- Import Components -->
<script src="./components/ReviewForm.js"></script>
<!-- in main.js -->
<script> // niet in js file
data() {
return {
...
reviews: []
}
},
methods: {
...
addInput(review) { //review = productRevies
this.reviews.push(review)
}
}
</script> <!-- niet in js file -->