We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e12a465 commit bffa2bdCopy full SHA for bffa2bd
src/guide/list.md
@@ -244,7 +244,7 @@ methods: {
244
<!-- インスタンスに "todo" プロパティが定義されていないため、エラーが発生します。 -->
245
246
<li v-for="todo in todos" v-if="!todo.isComplete">
247
- {{ todo }}
+ {{ todo.name }}
248
</li>
249
```
250
@@ -253,7 +253,7 @@ methods: {
253
```html
254
<template v-for="todo in todos" :key="todo.name">
255
<li v-if="!todo.isComplete">
256
257
258
</template>
259
0 commit comments