Na aula de Temos o modelo, mas e a view? Na primeira aula aparece um erro No momento do carregamento da página, não carrega minha grid.
`` NegociacaoController
this._negociacoesView = new NegociacoesView($('#negociacoesView'));
this._negociacoesView.update(); ``
`` class NegociacoesView {
constructor(elemento) { this.elemento = elemento; }
_template() {
return <table class="table table-hover table-bordered">
<thead>
<tr>
<th>DATA</th>
<th>QUANTIDADE</th>
<th>VALOR</th>
<th>VOLUME</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
;
}
update() { this._elemento.innerHTML = this._template(); }
} ```