Wait for DOM Change before Taking Action
Assume that we have a button which sets up with a click event listener to call upon a toggling of state to display an associated container:
import { LitElement, html } from "lit-element";
class MyElement extends LitElement {
render() {
return html`
<button @click="${this._handleClick}">click</button>
<div id="container" class=${this.open ? 'expanded' : 'collapsed'}>
The contents.
</div>
`;
}
_handleClick() {
this._toggleContainer();
}
//...
}
//...