We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32e0411 commit 6224a70Copy full SHA for 6224a70
packages/lit-dev-content/site/docs/v3/components/lifecycle.md
@@ -497,8 +497,9 @@ It's recommended to override the `getUpdateComplete()` method instead of the `up
497
```js
498
class MyElement extends LitElement {
499
async getUpdateComplete() {
500
- await super.getUpdateComplete();
+ const result = await super.getUpdateComplete();
501
await this._myChild.updateComplete;
502
+ return result;
503
}
504
505
```
0 commit comments