Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,12 @@ Vue projects can quickly be set up with Vite by running the following commands i
With npm:

```bash
$ npm init vite <project-name> -- --template vue
# npm 6.x
$ npm init vite@latest <project-name> --template vue

# npm 7+, extra double-dash is needed:
$ npm init vite@latest <project-name> -- --template vue

$ cd <project-name>
$ npm install
$ npm run dev
Expand Down