Skip to content
Snippets Groups Projects
Commit ca708fb0 authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire: Committed by Reiter, Christoph
Browse files

Add VPULitElement

parent 0a637ee6
No related branches found
No related tags found
No related merge requests found
import {LitElement} from "lit-element";
import $ from "jquery";
export default class VPULitElement extends LitElement {
$(selector) {
return $(this.shadowRoot === null ? this.querySelector(selector) : this.shadowRoot.querySelector(selector));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment