You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-6
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
# Quasar Framework: vue-cli-plugin-quasar
4
4
5
-
> :rocket: Start building a Vue app with Quasar Framework v1 (Vue 2) in 2 minutes!
5
+
> :rocket: Start building a Vue app with Quasar Framework v2 in 2 minutes!
6
6
7
7
> :warning:**For the premium (and recommended) experience with Quasar, including the ability to build Mobile & Electron apps and efortless upgrades to new Quasar versions, you should instead use Quasar CLI**
8
8
@@ -14,28 +14,32 @@ Please submit a PR to https://github.com/quasarframework/quasar-awesome with you
14
14
15
15
## Getting started
16
16
17
-
:warning: Make sure you have vue-cli v3/v4:
17
+
:warning: Make sure you have vue-cli 4.5.1+:
18
18
19
19
```
20
20
vue --version
21
21
```
22
22
23
-
If you don't have a project created with vue-cli v3/v4 yet:
23
+
If you don't have a project created with vue-cli 4.5.1+ yet:
24
24
25
25
```
26
+
# make sure to pick Vue 3 when asked:
26
27
vue create my-app
27
28
```
28
29
29
30
Navigate to the newly created project folder and add the cli plugin. Before installing it, make sure to commit your current changes should you wish to revert them later.
30
31
31
32
```
32
-
cd my-app
33
-
vue add quasar
33
+
# commands will change after Quasar v2 becomes stable (and out of beta)
34
+
35
+
$ cd my-app
36
+
$ yarn add --dev vue-cli-plugin-quasar@next
37
+
$ vue invoke quasar
34
38
```
35
39
36
40
It will ask you if you want the plugin to replace some existing files. It is recommended that you do it if you wish to have an example so you can quickly develop your app.
37
41
38
-
Your Vue config (in package.json or vue.config.js file, depending on what you chose when you created your vue app) will also contain a `quasar` Object. Most important property is `theme` (with possible values "mat" or "ios"), which you can later change should you want.
42
+
Your Vue config (in package.json or vue.config.js file, depending on what you chose when you created your vue app) will also contain a `quasar` Object.
39
43
40
44
## Supporting Quasar
41
45
Quasar Framework is an MIT-licensed open source project. Its ongoing development is made possible thanks to the support by these awesome [backers](https://github.com/rstoenescu/quasar-framework/blob/dev/backers.md).
0 commit comments