Skip to content

Commit fbd3909

Browse files
committed
Merge pull request #427 from tejitak/docs-typo
docs: replace v-repeat to v-for
2 parents b832e98 + 94867cb commit fbd3909

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/en/pipeline/data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Using `$loadingRouteData` in templates:
108108
<div v-if="$loadingRouteData">Loading ...</div>
109109
<div v-if="!$loadingRouteData">
110110
<user-profile user="{{user}}"></user-profile>
111-
<user-post v-repeat="post in posts"></user-post>
111+
<user-post v-for="post in posts"></user-post>
112112
</div>
113113
</div>
114114
```

docs/ja/pipeline/data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ route: {
107107
<div v-if="$loadingRouteData">Loading ...</div>
108108
<div v-if="!$loadingRouteData">
109109
<user-profile user="{{user}}"></user-profile>
110-
<user-post v-repeat="post in posts"></user-post>
110+
<user-post v-for="post in posts"></user-post>
111111
</div>
112112
</div>
113113
```

docs/zh-cn/pipeline/data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ route: {
106106
<div v-if="$loadingRouteData">Loading ...</div>
107107
<div v-if="!$loadingRouteData">
108108
<user-profile user="{{user}}"></user-profile>
109-
<user-post v-repeat="post in posts"></user-post>
109+
<user-post v-for="post in posts"></user-post>
110110
</div>
111111
</div>
112112
```

0 commit comments

Comments
 (0)