How to Structure a Vue.js Project

Here is the content of the src folder. I recommend you to kick-start the project with Vue CLI. I personally used the default Webpack template.

.
├── app.css
├── App.vue
├── assets
│ └── …
├── components
│ └── …
├── main.js
├── mixins
│ └── …
├──…