Folder structure
Folder Structure:-
|---- node_modules (node modules default)
|---- public
| |---- static (Project static files)
| | |---- images
| |---- index.html
|---- src (Project based custom files)
| |---- scss (Project scss files for styles)
| |---- core
| | |---- custom
| | |---- views
| |---- components (Project components files)
| | |---- Ecommerce (Ecommerces files)
| | |---- Global (Global components files)
| | |---- Layouts (Layouts)
| | | |---- Header (Header)
| | | |---- Footer (Footer)
| | | |---- Sidebar (Sidebar)
| | | |---- Banner (Banner)
| | |---- Widgets (Widgets)
| | |---- constants(Constant)
| | |---- lang ( Languages)
| | |---- lib (Css Files)
| | |---- EmbryoCss.js
| | |---- store (Store)
| | | |---- modules
| | | | |---- ecommerce (Ecommerce)
| | | | |---- payment (Payment)
| | | | |---- | settings (Settings)
| | | | |---- sidebar (Sidebar)
| | | |---- store.js
| |---- views (Project View files)
| |---- App.vue (App.vue)
| |---- main.js (main.js)
| |---- globalComponents.js (globalcomponent.js)
| |---- router.js
|---- _tests_ (test files default)
|---- babel.config.js (babel.config.js)
|---- package.json (package.json)
|---- package-lock.json (package-lock.json)
|---- postcss.config.js (postcss.config.js)
|---- vue.config.js (Webpack Config)
Last updated