Click handler is not working on lit element

151 Views Asked by At

I have a lit element called <test-logo></test-logo> that renders a logo. When someone clicks on the logo, I want to trigger a javascript logic. I added a @click handler to the element like this

<test-logo @click=${this._handleClickOnLogo.bind(this)}>></test-logo>

Here's test-logo:

override render() {
   return html `<logo-icon size="40"></logo-icon>
}

but the click handler is not being called. Can someone please help?

0

There are 0 best solutions below