From 1f77e6ade2e97e370d358f8a3d99e8ecfdbe877e Mon Sep 17 00:00:00 2001 From: Darren Hunter Date: Sun, 5 Aug 2018 11:45:18 +1000 Subject: [PATCH 1/2] Update index.md Update information for Vue CLI V3 - has different npm package name --- source/guide/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/guide/index.md b/source/guide/index.md index 5ccf42b0..60ea93f5 100644 --- a/source/guide/index.md +++ b/source/guide/index.md @@ -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 @@ -87,7 +88,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 ``` From 37cdf8f29c09909983ceed8999a5559dd330a57f Mon Sep 17 00:00:00 2001 From: Darren Hunter Date: Sun, 5 Aug 2018 12:04:20 +1000 Subject: [PATCH 2/2] Update index.md --- source/guide/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/guide/index.md b/source/guide/index.md index 60ea93f5..02daea31 100644 --- a/source/guide/index.md +++ b/source/guide/index.md @@ -78,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 ```