Common configuration instructions in vue-cli projects

├── build # Store webpack related configuration and script files
├── config # Configure the port number and interface of the development environment
├── src # Source code
│ ├── api # All requests
│ ├── assets # Theme fonts, etc. Static resources
│ ├── components # Global public components
│ ├── icons # All svg icons of the project
│ ├── layout # Global layout
│ ├── router # Routing
│ ├── store # Global store management
│ ├── styles # Global style
│ ├── utils # Global public method
│ ├── vendor # Public vendor
│ ├── views # views all pages
│ ├── App.vue # Entry page
│ ├── main.js # Entry file loading component initialization, etc.
│ └── permission.js # Authority management
│ └── settings.js # Configuration file
├── static # Static resources: templates, pictures, 404 pages
│ │ ── file # template
│ └── img # picture 
├── .babelrc # ES6 encoding, babel-loader configuration
├── .editorconfig # define and maintain a consistent coding style between different editors and IDEs
├── .gitignore # git upload needs to ignore configuration
├── .postcssrc.js # browser prefix configuration
├── favicon.ico # ico icon
└── index.html # entry page
└── package.json # project basic information
└─ ─ package-lock.json # locked version
|---README.md # project description

Guess you like

Origin blog.csdn.net/kk7564335/article/details/126118761