2022.06.07 Front-end-vue brief introduction to project creation process

1.1. Operation - How to manually and quickly create a Vue project without relying on development tools?

Install vue, install vueCli scaffolding, as introduced in other articles of my blog.

After installing the vue scaffolding related environment, use the command prompt (press win + R key, cmd), enter

vue ui

It will automatically run to the vue project manager, and then we can directly create and manage our vue project here, and run the compilation and installation environment. The installation steps are as shown in the figure:

The default package manager is npm, and yarn is recommended, as explained in other articles of this blog. Others are based on related needs and are just optional.

dart-scss is a compiling tool for scss. After selecting here, you don’t need to install node-sass separately, or the koala plug-in of vsCode also compiles scss. 

Recommended configuration items, you can save the configuration and directly import the configuration next time to use: 

Guess you like

Origin blog.csdn.net/m0_46551050/article/details/124011146