Templates
class MyComponent extends wire.ui.WebComponent {
static get template() {
return '<div></div>';
}
}class MyComponent extends wire.ui.WebComponent {
static get templateUrl() {
return './my-component.html';
}
}<!-- my-component.html -->
<div></div>Properties
Last updated