Skip to content

Commit 7c50532

Browse files
committed
Cleanup your turn
1 parent ec2a04c commit 7c50532

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

days/093-096-vuejs/your-turn/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Days 93-96 Frontend Web Apps with Vue.js
22

3-
In this your-turn, you will developer the web app we created during the presentation.
3+
In this your-turn, you will develop the web app we created during the presentation.
44

55
## Day 1: Watch the first half of the video lessons
66

@@ -55,7 +55,7 @@ Play around with this in your app to see that it's working.
5555

5656
### Looping over data with repeated HTML blocks
5757

58-
To loop over data, use `v-for`, for exampe:
58+
To loop over data, use `v-for`, for example:
5959

6060
```
6161
<div class="movie" v-for="m in movies">
@@ -64,7 +64,7 @@ To loop over data, use `v-for`, for exampe:
6464

6565
### Conditional rendering
6666

67-
For conditional rendering, it's `v-if` `and v-else`:
67+
For conditional rendering, it's `v-if` and `v-else:
6868

6969
```
7070
<span class="year" v-if="m.year > 0">{{m.year}}</span>
@@ -75,7 +75,8 @@ For conditional rendering, it's `v-if` `and v-else`:
7575

7676
To add functions to your app, use the methods field in the *settings* object:
7777

78-
```
78+
```javascript
79+
// in js/site.js
7980
methods: {
8081
the_function: function() {
8182
...

0 commit comments

Comments
 (0)