Created
October 7, 2020 18:16
-
-
Save BerndWessels/a4211c6ba3dae36f6e487ba8a30eb4ac 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-env browser */ | |
class BusinessSolutionEmployeeSearchForm extends HTMLElement { | |
connectedCallback() { | |
this.render(); | |
} | |
set api(val) { | |
this._api = val; | |
this.render(); | |
} | |
render() { | |
this.innerHTML = "..."; | |
} | |
} | |
customElements.define("business-solution-employee-search-form", BusinessSolutionEmployeeSearchForm); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment