Created
April 9, 2020 20:20
-
-
Save dgrammatiko/642e69ae5a4a690f6b173d0fc96a65dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable require-jsdoc */ | |
export class BaseElement extends LitElement { | |
constructor() { | |
super(); | |
} | |
createRenderRoot() { | |
// Disable shadow DOM. | |
// Instead templates will be rendered in the light DOM. | |
return this; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment