6 lines
162 B
JavaScript
6 lines
162 B
JavaScript
|
function updateView() {
|
||
|
document.getElementById('app').innerHTML = /*html*/ `
|
||
|
${model.data.users}
|
||
|
`;
|
||
|
console.log(model.data.users, "hello");
|
||
|
}
|