added more examples

This commit is contained in:
Andras Bacsai
2026-04-10 12:40:08 +02:00
parent b0d6e95f1b
commit 229446e59c
61 changed files with 20721 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
# Vue
Vue examples with SSR and static export.
## Variants
### SSR (Server-Side Rendering)
```bash
cd ssr
npm install
npm run dev # development
npm run build # build
npm start # production server
```
### Static Export (SPA)
```bash
cd static
npm install
npm run dev # development
npm run build # build to 'dist' directory
npm start # serve static files
```