Project Structure
Root
Like the default config generated by Vue CLI. In this folder you will find a .env file to define Environment Variables. It's not Git ignored, be careful to store application keys, passwords etc. Instead of using .env you can use .env.local check Vue CLI Docs
.
├── .env
├── .eslintrc.js
├── .prettierrc
├── vue.config.js
├── 📂 public
│ ├── favicon.ico
│ └── index.html
└── 📂 src
└── ...
The Source Folder
..
│
📂 src
│
├── main.js
├── 📂 App
├── 📂 assets
├── 📂 components
├── 📂 config
├── 📂 directives
├── 📂 filters
├── 📂 mixins
├── 📂 router
├── 📂 store
└── 📂 views