the-majesty-of-vuejs-2 icon indicating copy to clipboard operation
the-majesty-of-vuejs-2 copied to clipboard

(Russian) Ошибки в коде готовых решений

Open shindax opened this issue 6 years ago • 0 comments

Файл /codes/chapter8/8.5.html Строка 11: <story v-for="(story, index) in stories" :key="index" :favorite="favorite" @update="updateFavorite"> должно быть: <story v-for="(story, index) in stories" :key="index" :story="story" :favorite="favorite" @update="updateFavorite">

Домашняя работа к главе 8, файл /homework/chapter8.html Строка 40: return this.current.horses < this.chariot.horses должно быть: return this.current.horses > this.chariot.horses

Строка 48: return this.current.name === null должно быть: return !this.current.name или return this.current.name === undefined

shindax avatar Dec 06 '18 09:12 shindax