1, the beginning of the

Quasar’s official address is quasar.dev/

I also found the Chinese website :www.quasarchs.com/ for those who are not good at English, you can directly read the Chinese website.

First, how do I install the Quasar CLI, which is a build tool for the Quasar project

As mentioned in the Quasar documentation, to install the Quasar CLI, you need to install Node.js and then use the package management tool NPM to install the Quasar CLI. For a brief explanation, Node.js can be interpreted asa javascript runtime environment, similar to python’s interpreter, while NPM is similar to Python’s package management tool PIP, so if you want to install Quasar CLI, you need to install Node.js first

2. Install Node.js

Node. js Chinese website nodejs.org/zh-cn/

3. Install vuE-CLI

npm install -g vue-cli
Copy the code

4. Install Quasar- CLI

~~npm install -g quasar-cli~~

npm install -g @quasar/cli
Copy the code

5. Create projects

~~quasar init Project name ~~ $quasar create <folder_nameCopy the code

6. Start the project

Switch to the project directory and start the project

cdAwesome-todo // Switch to quasar dev // under the project directory to start the projectCopy the code

When the project starts, an example of a Quasar project is displayed automatically through the default browser:

Let’s take a look at the project catalog