Ao clicar no botão incluir os dados não aparecem na tabela e não consigo entender o motivo.
GitHub https://github.com/Lorandi/StockJS
NegociacoesView.js
class NegociacoesView {
constructor(elemento) {
this._elemento = elemento;
}
_template(model) {
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>
${model.negociacoes.map(n => {
return `
<tr>
<td>${DateHelper.dataParaTexto(n.data)}</td>
<td>${n.quantidade}</td>
<td>${n.valor}</td>
<td>${n.volume}</td>
</tr>
`
}).join('')}
</tbody>
</table>
`;
}
update(model) {
this._elemento.innerHTML = this._template(model);
}
}
Alguma sugestão?