Synchro
Synchro

Reputation: 1269

How to install UI framework Quasar to existing Vue JS project

I have a project in Vue JS I need some components (for example range) which I want to apply for my project, my problem is that I do not quite understand how these components can be applied in my project, since I looked at some tutorials installing Quasar from scratch but the problem is that they first set the global variable using "npm install -g @ quasar / cli" and then create a new project using the command "quasar create <folder_name>"

but as you already understood I need to create a project zone I already have a project, I only need to install Quasar and then use those components from the box that I need, I remember when I was still working in React, I did not have such problems

Upvotes: 4

Views: 15285

Answers (1)

Fariborz Korevli
Fariborz Korevli

Reputation: 549

You can use quasar with Vue CLI plugin:

with Vue 3: https://quasar.dev/start/vue-cli-plugin

with Vue 2: https://v1.quasar.dev/start/vue-cli-plugin

Upvotes: 5

Related Questions