You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -149,10 +149,9 @@ into the element. This is the only method that must be implemented by subclasses
149
149
## API Documentation
150
150
151
151
*`render()` (protected): Implement to describe the element's DOM using `lit-html`. Ideally,
152
-
the `render` implementation is a [pure function](https://en.wikipedia.org/wiki/Pure_function) using only the element's current properties
153
-
to describe the element template. This is the only method that must be implemented by subclasses.
154
-
Note, since `render()` is called by `update()`, setting properties does not trigger
155
-
an update, allowing property values to be computed and validated.
152
+
the `render` implementation is a [pure function](https://en.wikipedia.org/wiki/Pure_function) using only the element's current properties to describe the element template. Note, since
153
+
`render()` is called by `update()`, setting properties does not trigger an
154
+
update, allowing property values to be computed and validated.
156
155
157
156
*`shouldUpdate(changedProperties)` (protected): Implement to control if updating and rendering
158
157
should occur when property values change or `requestUpdate()` is called. The `changedProperties`
0 commit comments