1
I can’t 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 tbm only the variable {{ Response }} and then show:
{"views":{"1":{"aeracao_id":129,"motor_id":1,"motor_ligado":true,"seq_motor_cont":1,"produto":"Teste"}}}