Quasar CLI with Vite - @quasar/app-vite
This is the structure of a project with all modes installed. There’s no reason to be intimidated though!
TIP
If you are a beginner, all you’ll need to care about is the /quasar.config
file (Quasar App Config file), /src/router
, /src/layouts
, /src/pages
and optionally /src/assets
.
./
src/
css/
# CSS/Sass/... files for your app
pages/
# Page .vue files
index.js
# Pinia initialization
<store>
# Pinia stores...
<store>...
index.js
# Vuex Store definition
<folder>
# Vuex Store Module...
<folder>
# Vuex Store Module...
App.vue
# Root Vue component of your App
index.html
# Template for index.html
dist/
# Where production builds go
spa
# Example when building SPA
ssr
# Example when building SSR
electron
# Example when building Electron
...