I can not show data with vue js, in my html I have:
<div class="panel">
<div class="panel-body">
<div class="col-md-3"><img src="../images/aeracao/produto.png" alt=""></div>
<div class="col-md-9"><b>{{ response.views[1].produto }}</b><br>
<span class="st-label-info">Produto</span></div>
</div>
</div>
And the vue code:
var vm = new Vue({
el: '#aeracaoApp',
data: {
response: [],
currentGrupoArco: 1,
mensagem: '',
showModal: false,
historico: []
},
methods : {
update: function () {
this.$http.get(URL_ALL).then((response) => {
this.response = response.data;
}, (response) => {
//console.log('erro')
});
},
...
I tried to show only the variable {{response}} and then it shows:
{"views":{"1":{"aeracao_id":129,"motor_id":1,"motor_ligado":true,"seq_motor_cont":1,"produto":"Teste"}}}