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
Copy file name to clipboardexpand all lines: app/docs/md/conventions/components.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Let's look at the lifecycle of a component we'll call `DeleteButton`. This compo
13
13
1. Client requests a page including a `<delete-button></delete-button>` tag.
14
14
2. Enhance SSR finds the component in `app/components/delete-button.mjs`.
15
15
3. Enhance SSR runs the `render` method of the `DeleteButton` class on the server.
16
-
4. The entire page is returned to the client.
16
+
4. The entire page is returned to the client as HTML and CSS.
17
17
5. The client encounters a `script` tag and downloads it from the server.
18
18
6. This `script` tag includes the code for `DeleteButton` so it is evaluated and executed. When executed the `custom-elements.define('delete-button', DeleteButton)` method will be called registering your web component with the browser.
0 commit comments