Home > Web Front-end > JS Tutorial > body text

Detailed examples of simple tutorials on building a Vue environment

小云云
Release: 2017-12-26 13:44:26
Original
1641 people have browsed it

To use vue to develop the front-end framework, you must first have an environment. This environment requires the help of node, so you must first install node, and use npm in node to install the required dependencies, etc. This article mainly introduces a simple tutorial on building a Vue environment, which has certain reference value. Interested friends can refer to it. I hope it can help everyone.

①Install nodejs

https://nodejs.org

Download nodejs, (lts) when installing, click Agree, and go to next Can.

It will come with an npm (npm is a package manager, what is it used for? It is a warehouse, if you need to use it, just npm install packageName)

Test:

②Install cnpm (Taobao mirror,)


npm install -g cnpm --registry=https://registry.npm.taobao.org
Copy after login

③ Install vue-cli

windows computer, press widnows+r at the same time, enter cmd, click Enter to enter the command line mode; enter

in the command line Following the instructions, click Enter at the end
(npm install vue-cli -g (cnpm is equivalent to npm after installing the Taobao image)) cnpm install --global vue-cli

④Install webpack

npm install webpack -g

 

④Create a template project based on the vue instructions provided after vue-cli is installed

Use the template compression package (tpls.zip) provided by the teacher

I have uploaded tpls.zip in the "Information" under the file

Place it on the D drive, create a new vue_cli, and unzip it Each file after is copied to vue_cli.

⑤Dependencies needed to install the project

After decompressing the above folder, enter the directory and execute the instructions:


cnpm install
Copy after login

⑥Execute the command and start the development server


npm run dev
Copy after login

Note: If the Taobao image installation fails, the solution:

Set up first The proxy is empty npm config set proxy null, and then install Taobao Mirror again

##Related recommendations:


Detailed example of chat room for communication between father and son in vue component

Detailed example of vue using mock data

How to implement rolling loading of more functions in vue

The above is the detailed content of Detailed examples of simple tutorials on building a Vue environment. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!