Listening for Cart Updates
At app.js
add the following code
window.addEventListener("appcartchange", event => {
const badge = document.getElementById("badge");
const qty = app.store.cart.reduce((acc, item) => acc + item.quantity, 0);
badge.textContent = qty;
badge.hidden = qty == 0;
});