Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Page 99 (Rus) - Ошибка в примере кода #48

Open
iks3000 opened this issue Mar 16, 2019 · 0 comments
Open

Page 99 (Rus) - Ошибка в примере кода #48

iks3000 opened this issue Mar 16, 2019 · 0 comments

Comments

@iks3000
Copy link

iks3000 commented Mar 16, 2019

Vue.component('story', {
// ...
methods: {
// ...
updateFavorite: function () {
// 'update' — это просто имя пользовательского события
// это может быть что угодно, например, fav-update this.$emit('update', this.story)
} }
// ...
});

должно быть
Vue.component('story', {
// ...
methods: {
// ...
setFavorite: function () {
// 'update' — это просто имя пользовательского события
// это может быть что угодно, например, fav-update this.$emit('update', this.story)
} }
// ...
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant