|
2 | 2 | <h1>{{ message }}</h1>
|
3 | 3 | <p><img :src="logo" /></p>
|
4 | 4 | <ul class="columns-2">
|
5 |
| - <li><router-link to="/using-data">/using-data</router-link> demonstrates how to |
6 |
| - leverage the <code>getData()</code> function |
7 |
| - and <code>useRouteContext()</code> to retrieve server data for a route.</li> |
8 |
| - <li><router-link to="/using-store">/using-store</router-link> demonstrates how to |
9 |
| - retrieve server data and maintain it in the global state.</li> |
10 |
| - <li><router-link to="/using-auth">/using-auth</router-link> demonstrates how to |
11 |
| - wrap a route in a custom layout component.</li> |
12 |
| - <li><router-link to="/form/123">/form/123</router-link> demonstrates how to |
13 |
| - send a POST request with form data to a route with dynamic URL.</li> |
14 |
| - <li><router-link to="/client-only">/client-only</router-link> demonstrates how to set |
15 |
| - up a route for rendering on the client only (disables SSR).</li> |
16 |
| - <li><router-link to="/server-only">/server-only</router-link> demonstrates how to set |
17 |
| - up a route for rendering on the server only (sends no JavaScript).</li> |
18 |
| - <li><router-link to="/streaming">/streaming</router-link> demonstrates how to set |
19 |
| - up a route for SSR in streaming mode.</li> |
| 5 | + <li><router-link to="/using-data">/using-data</router-link> — <b>isomorphic data fetching</b>.</li> |
| 6 | + <li><router-link to="/using-store">/using-store</router-link> — <b>universal</b> <code>reactive()</code> stores.</li> |
| 7 | + <li><router-link to="/using-auth">/using-auth</router-link> — <b>custom layout</b>.</li> |
| 8 | + <li><router-link to="/form/123">/form/123</router-link> — <code>POST</code> to dynamic route.</li> |
| 9 | + <li><router-link to="/client-only">/client-only</router-link> — <b>disabling</b> SSR.</li> |
| 10 | + <li><router-link to="/server-only">/server-only</router-link> — <code>0kb</code> JavaScript.</li> |
| 11 | + <li><router-link to="/streaming">/streaming</router-link> — <b>streaming</b> SSR.</li> |
20 | 12 | </ul>
|
21 | 13 | </template>
|
22 | 14 |
|
|
0 commit comments