the-majesty-of-vuejs-2
the-majesty-of-vuejs-2 copied to clipboard
(Russian) Ошибки в коде готовых решений
Файл /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