Prop Access
The props
property of the WebComponent
interface is provided for easy read/write access to a camelCase counterpart of any observed attribute.
class HelloWorld extends WebComponent { static props = { myProp: 'World', } get template() { return html` <h1>Hello ${this.props.myProp}</h1> ` }}
Assigning a value to the props.camelCase
counterpart of an observed attribute will trigger an “attribute change” hook.
For example, assigning a value like so:
this.props.myName = 'hello'
…is like calling the following:
this.setAttribute('my-name','hello');
Therefore, this will tell the browser that the UI needs a render if the attribute is one of the component’s observed attributes we explicitly provided with static props
;
Alternatives
The current alternatives are using what HTMLElement
provides out-of-the-box, which are:
HTMLElement.dataset
for attributes prefixed withdata-*
. Read more about this on MDN.- Methods for reading/writing attribute values:
setAttribute(...)
andgetAttribute(...)
; note that managing the attribute names as strings can be difficult as the code grows.