Skip to content

Project Directory Organization

Aaron Gong edited this page Oct 1, 2020 · 1 revision
+- public
|  +- images
|  +- static (e.g. css / js)
+- src
|  +- components (your components here)
|  +- layouts
|  |  +- Public.vue
|  |  +- Secure.vue
|  +- lib (common functions, utilities, etc. used throughout
|  +- pages (your pages here
|  |  +- SignIn.vue
|  |  +- Dashboard.vue
|  +- plugins (holds your objects available application wide - using provide / inject)
|  |  +- http.js (e.g. http call used in many components)
+- App.vue
+- main.js
+- router.js
+- store.js
+- .env.development
+- .env.production
+- config.js
+- index.html
+- package.json
+- vite.config.js
Clone this wiki locally