wrAttributes
<my-component
message="Hello web components"
products-fruit="bananas",
products-cookies="chocolate chip">
</my-component>class MyComponent extends wire.ui.WebComponent {
attrib: any;
connectedCallback(){
this.attrib = this.wrAttributes();
}
static get templateUrl() {
return './my-component.html';
}
}
customElements.define('my-component', MyComponent);Last updated