-
Notifications
You must be signed in to change notification settings - Fork 1
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
Выбранный митап #8
Conversation
Добавляю преподавателя (@ShGKme) для код-ревью. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Принято, но обратите внимание на комментарии.
setup() {}, | ||
setup() { | ||
const metupId = ref(1) | ||
const meetup = ref({}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{}
(объект без полей) - некорректное начальное значение, это не частный случай данных, объекта с митапов. Отсутствие данных лучше явно описывать как null
. В противном случае неудобно проверять наличие данных, и сложнее находить источник ошибки при работе с данными (например, сейчас можно обратиться к title и получить undefined
вместо ошибки, но обращение к agenda[0]
приведёт к ошибке. Обе ситуации неявные и не дают понять, что проблема в отсутствии митапа.
</div> | ||
|
||
<div class="meetup-selector__cover"> | ||
<div class="meetup-cover"> | ||
<h1 class="meetup-cover__title">Some Meetup Title</h1> | ||
<h1 class="meetup-cover__title">{{meetup.title}}</h1> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Здесь всегда выводится заголовок, даже когда митапа нет и заголовок - пустая строка.
No description provided.