Skip to content
This repository has been archived by the owner on Dec 13, 2019. It is now read-only.

Update index.md #561

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
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
8 changes: 7 additions & 1 deletion source/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ First, we install Quasar CLI. Make sure you have Node >=8 and NPM >=5 installed

```bash
# make sure you have vue-cli globally installed
# see https://cli.vuejs.org/guide/installation.html for using latest Vue CLI @vue/cli
$ yarn global add vue-cli
# or:
$ npm install -g vue-cli
Expand All @@ -77,6 +78,9 @@ $ npm install -g quasar-cli
```

Then we create a project folder with Quasar CLI:

Note if using @vue/cli (and not vue-cli) then you will need to also run npm install -g @vue/cli-init

```bash
$ quasar init <folder_name>
```
Expand All @@ -87,7 +91,9 @@ Now head on to read about [Main Starter Kit](/guide/app-installation.html) and a

## Vue CLI 3 plugin
Make sure you have vue-cli 3.x.x:

Note the Vue CLI package name has changed from vue-cli to @vue/cli
If you have vue-cli installed, unistall it using npm uninstall -g vue-cli before installing. npm install -g @vue/cli
Please see - https://cli.vuejs.org/guide/installation.html
```
vue --version
```
Expand Down