We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac74e1d commit 1015700Copy full SHA for 1015700
README.md
@@ -9,11 +9,12 @@ This is the repository for Vue 3.0.
9
- Scaffold via [Vite](https://github.com/vitejs/vite):
10
11
```bash
12
- # npm
13
- npm init @vitejs/app
+ # npm 6.x
+ npm init vite@latest my-vue-app --template vue
14
+ # npm 7+, extra double-dash is needed:
15
+ npm init vite@latest my-vue-app -- --template vue
16
# yarn
- yarn create @vitejs/app
- # select vue template
17
+ yarn create vite my-vue-app --template vue
18
```
19
20
- Scaffold via [vue-cli](https://cli.vuejs.org/):
0 commit comments