if), ругается?
justifyAnswers() {
if (this.stepData.variants.length > 2) {
return 'start'
} else {
return 'center'
}
},
Ошибка:
Uncaught TypeError: this.stepData.variants.length is not a function
При этом, этот компьютед работает.
if (this?.stepData !== undefined && this?.stepData !== null) { if (this.stepData.variants.length > 2) { return 'start' } else { return 'center' } } else { console.warn(`Какая-то херня случилась`) }
Обсуждают сегодня