warn]: Property or method "title" is not defined on the instance but referenced during render. Make sure to declare reactive data properties in the data option.
title в дата функции объявил
data: function() {
return {
title: '',
};
}
в created присвоил значение
this.title = 'My new title';
и в шаблоне вывожу
<h1>{{title}}</h1>
Текст, которыя я присвоил в креатед выводит, но выкидывает ошибку.
скинь весь код
в этом и есть ошибка - Property or method "title" is not defined on the instance but referenced during render. Make sure to declare reactive data properties in the data option.
""
Es6 2к17
Обсуждают сегодня