vue create the directory structure of the project

- the beginning of all folders
-build webpack packaged configuration items
-config webpack configuration items such as: webpack can help us cross-domain
-node_modules project dependencies
-src ***** you write code
-assets static resources will be involved in packaging
- components assembly
App.vue root component
main.js entry file
-static static resources, which put img, you do not modify the css or js, such as: reset.css rem.js iconfont.css
not participate in the package
.babelrc ES6
.enditorconfig editor configuration
.gitignore upload to github, need to ignore files
.postcssrc.js
index.html page only
package.json record of our dependencies
readme.md command

Published 18 original articles · won praise 0 · Views 137

Guess you like

Origin blog.csdn.net/yeee1128/article/details/104382504