2
I’m doing a few things in Vue. And I have a problem here. Apparently there’s a mistake here and I have no idea what’s wrong. Console says title is not set.
var cadastro = new Vue({
el:'#cadastro',
data:{
pagina:0,
titulo:["Dados Pessoais", "Endereço", "Curso"],
titulo_atual: titulo[this.pagina]
},
methods:{
passarPagina: function(e){
e.preventDefault();
this.pagina++;
},
voltarPagina: function(e){
e.preventDefault();
this.pagina--;
}
}
});
A hunch, try to
titulo_atual: this.titulo[this.pagina]
– BrTkCa
Now it appears that this.pagina is who is undefined
– Hiago Machado
Another hunch, but try to change
this.pagina++;
forthis.data.pagina++;
– BrTkCa