Olá! Notei que ao usar o type="module" no arquivo clientes.html na seguinte linha:
<script type="module" src="./componentes/listagem/listagem-clientes.js"></script>
Ele não executa o onclick="excluirCliente(${id})" no botão Excluir
clientes.html:1 Uncaught ReferenceError: excluirCliente is not defined
at HTMLButtonElement.onclick (clientes.html:1)
Por que isso acontece? Como resolver?
Método excluir cliente que está no listagem-clientes.js
const excluirCliente = id => {
if(confirm("Deseja excluir o cliente?")){
deletarCliente(id);
}
document.location.reload()
}