|
1 |
| -# Project Name |
| 1 | +# Vue 3 Server Side Rendering Example |
2 | 2 |
|
3 | 3 | [](./LICENSE)
|
4 | 4 | [](https://moduscreate.com)
|
| 5 | +[](https://repl.it/github/moduslabs/vue3-example-ssr) |
5 | 6 |
|
6 |
| -Project description - one or two paragraphs. The enemy is dark and creates major problems. The solution is now available and the World can rejoice. |
| 7 | +Example project that demonstrates the new Vue 3 Server Side Rendering APIs and Capabilities. Please follow the video turorial for more information. |
7 | 8 |
|
8 |
| -- [Getting Started](#getting-started) |
9 |
| -- [How it Works](#how-it-works) |
10 |
| -- [Developing](#developing) |
11 |
| - - [Prerequisites](#prerequisites) |
12 |
| - - [Testing](#testing) |
13 |
| - - [Contributing](#contributing) |
14 |
| -- [Modus Create](#modus-create) |
15 |
| -- [Licensing](#licensing) |
| 9 | +Follow us on |
| 10 | + |
| 11 | +<a href="https://youtube.com/moduscreate?sub_confirmation=1"><img src="https://img.shields.io/badge/youtube-%23FF0000.svg?&style=for-the-badge&logo=youtube&logoColor=white" /></a> |
| 12 | + |
| 13 | +### Server Side Rendering with Vue.js 3 |
| 14 | + |
| 15 | +[](https://youtu.be/XJfaAkvLXyU) |
16 | 16 |
|
17 | 17 | # Getting Started
|
18 | 18 |
|
19 |
| -{Minimal steps required for a quick software trial.} |
| 19 | +Test in: |
20 | 20 |
|
21 |
| -```js |
22 |
| -import { Fantastico } from '@modus/awesome-solution'; |
| 21 | +- Repl.it: [https://repl.it/@Modus/vue3-example-ssr](https://repl.it/@Modus/vue3-example-ssr) |
23 | 22 |
|
24 |
| -const amazing = new Fantastico(); |
| 23 | +### Project setup |
25 | 24 |
|
26 |
| -export default amazing; |
| 25 | +``` |
| 26 | +npm install |
27 | 27 | ```
|
28 | 28 |
|
29 |
| -# How it works |
| 29 | +### Create a server-side-rendered build |
30 | 30 |
|
31 |
| -{Describe how it works. Include images if possible.} |
| 31 | +``` |
| 32 | +npm run ssr |
| 33 | +``` |
32 | 34 |
|
33 |
| -# Developing |
| 35 | +### Compiles and hot-reloads for development |
34 | 36 |
|
35 |
| -{Show how engineers can set up a development environment and contribute.} |
| 37 | +``` |
| 38 | +npm run serve |
| 39 | +``` |
36 | 40 |
|
37 |
| -## Prerequisites |
| 41 | +### Compiles and minifies for production |
38 | 42 |
|
39 |
| -{Explain the prerequisites} |
| 43 | +``` |
| 44 | +npm run build |
| 45 | +``` |
40 | 46 |
|
41 |
| -## Testing |
| 47 | +### Lints and fixes files |
42 | 48 |
|
43 |
| -{Notes on testing} |
| 49 | +``` |
| 50 | +npm run lint |
| 51 | +``` |
44 | 52 |
|
45 |
| -## Contributing |
| 53 | +### Customize configuration |
46 | 54 |
|
47 |
| -{How can the community contribute} |
| 55 | +See [Configuration Reference](https://cli.vuejs.org/config/). |
48 | 56 |
|
49 | 57 | # Modus Create
|
50 | 58 |
|
|
0 commit comments