class AddCard extends HTMLElement {
connectedCallback() {
this.innerHTML = `
`;
this.querySelector('#add').addEventListener('click', () => this.addNums());
}
async addNums() {
const a = +this.querySelector('#a').value;
const b = +this.querySelector('#b').value;
this.querySelector('#out').textContent = await window.App.req('POST', '/api/add', {a, b});
}
}
customElements.define('add-card', AddCard);