SoFunction
Updated on 2025-04-03

Explanation of Vue basic configuration

The environment is Centos7. First download the compressed packages of nodejs and npm. The two are together. After decompressing, enter the bin directory. Use the ln -s command to softly connect the npm and node inside to the /usr/bin/ directory, and then exit this directory. Node -v to view the version and check the installation successfully.

Enter the bin directory you just decompressed again and enter the command

npm install -g cnpm --registry=

Install Taobao mirror, this method draws on the vue tutorial. (It may also need to soft connect after installation)

Install the webpack packager, command (you may also need to soft connect after installation, depending on your own situation)

cnpm install -g webpack

Next install vue-cli and type the command

cnpm install --global vue-cli

This may also need to be soft-connected after installation.

Finally, you can create a project, create a new folder to store the vue project, enter it in this folder

vue init webpack MyVueProject

Then, it’s all the way to enter. When you encounter a Use ESLint, you may encounter inexplicable errors.

Finally, let you download the thing, choose the last one manually, and he will ask you to enter npm or something, change npm to our cnpm, copy the ones later, and then it will be almost the same, otherwise the npm download will be very slow. The environment has been configured and the project has been created. Next, continue to write a record of first-time learning vue.

The above is all the content of this introduction. Thank you for your support.