chore: update readme
This commit is contained in:
parent
e226c1bf3b
commit
ca8264c4b9
1 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ The result is a reactive UI that updates on attribute changes:
|
|||
|
||||
This mental model attempts to reduce the cognitive complexity of authoring components:
|
||||
|
||||
1. The `template` is a read-only property (initialized with a `get` keyword) that represents *how* the component view is rendered. This makes the template close to modification.
|
||||
1. The `template` is a read-only property (initialized with a `get` keyword) that represents *how* the component view is rendered.
|
||||
1. There is a `render()` method that triggers a view render.
|
||||
1. This `render()` method is *automatically* called under the hood every time an attribute value changed.
|
||||
1. You can *optionally* call this `render()` method at any point to trigger a render if you need.
|
||||
|
@ -189,4 +189,4 @@ class ClickableText extends WebComponent {
|
|||
return `<span style="cursor:pointer">Click me!</span>`;
|
||||
}
|
||||
}
|
||||
```
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue