[solved] How to go back to Quasar v1
-
I have installed and been playing in Quasar v2 with vue3, but now I found out i have to support IE11… sucks but I have to go back to Quasar v1. I can’t seem to get a quasar create going that is for v1 now though. I have uninstalled the Quasar cli @next and installed just @quasar/cli…
How do you make a Quasar 1 project with Vue2?
-
I created a quasar app with the cli and it is still v1. I did this yesterday.
What is the problem? Any errors , or strange output…?
-
i just did npm install -g @quasar/app@1.15.4 and then quasar create, when it did the package json, inside I saw quasar: ‘2.0.0’, am I wrong to think that is a quasar v2 version it made? It also asking me about compositional API in the quasar create, which I believe is only for vue3…
i guess im asking also, how do i confirm its version 1…
-
npm install -g @quasar/app@1.15.4
that’s wrong, you install the quasar’s cli globally not the quasar/app.
Its’ correct that the quasar/app is 2.x for Qv1
I have this in my Qv1 package.json
dependencies "@quasar/extras": "^1.9.16", "quasar": "^1.15.3", devDependencies "@quasar/app": "^2.0.0",
and quasar cli 1.12. To install globally:
npm install -g @quasar/cli
-
@dobbel said in How to go back to Quasar v1:
npm install -g @quasar/cli
Thanks @dobbel I am trying that now… I will confirm thats what I see in the package.json after. I can’t thank you enough.
-
@dobbel I guess the devDependency saying ^2.0.0 was throwing me off…
-
@dobbel Sorry for so many messages, now I am thinking my project never was really Quasar v2… my original one has:
“dependencies”: {
“@quasar/extras”: “^1.0.0”,
“quasar”: “^1.0.0”“devDependencies”: {
“@quasar/app”: “^1.0.0”,But, none of the Ajax worked when I went into IE11…
-
the devDependency saying ^2.0.0 was throwing me off…
I think it’s very confusing especially for new people.
-
I found in another thread you posted that the IE Support might need to be added… I am trying that now… but it seems like I was on Quasar v1 all along? You can use compositional API with quasar v1? I am so new I didn’t know what to look for.
-
I would not use composition api with vue2. Personal opinion , options api is much better for 95% of all the use cases.
-
Thanks. Going to javascript and Quasar v1 has been fine in ie11 so far.