Folder Structure
Flexy VueJs Dashboard
📦
├── 📂 docs > Documentation files
├── 📂 Package
│ ├── 📂 Main > Main project directory
│ │ ├── 📂 public > Public assets
│ │ ├── 📂 src > Source files
│ │ │ ├── 📂 assets > Static assets
│ │ │ ├── 📂 images > Image files
│ │ │ ├── 📂 components > Reusable Vue components
│ │ │ │ ├── 📂 auth > Authentication components
│ │ │ │ ├── 📂 dashboard > Dashboard-related components
│ │ │ │ ├── 📂 shared > Shared UI elements
│ │ │ │ ├── 📂 style-components > Styled components
│ │ │ ├── 📂 layouts > Page layouts
│ │ │ │ ├── 📂 blank > Blank layout
│ │ │ │ ├── 📂 full > Full layout
│ │ │ ├── 📂 plugins > Plugin configurations
│ │ │ │ ├── 📄 vuetify.ts > Vuetify configuration
│ │ │ ├── 📂 router > Vue Router setup
│ │ │ ├── 📂 scss > SCSS styling files
│ │ │ ├── 📂 theme > Theme configuration
│ │ │ ├── 📂 types > TypeScript type definitions
│ │ │ │ ├── 📂 dashboard > dashboard page types
│ │ │ │ ├── 📂 themeTypes > Theme-related types
│ │ │ ├── 📂 utils > Utility functions
│ │ │ │ ├── 📂 helpers > Helper functions
│ │ │ │ ├── 📂 locals > Localization files
│ │ │ │ ├── 📄 axios.ts > Axios setup for API calls
│ │ │ ├── 📂 views > Main application views/pages
│ │ │ │ ├── 📂 auth > Authentication views
│ │ │ │ ├── 📂 dashboard > Dashboard views
│ │ │ │ ├── 📂 pages > General pages
│ │ │ │ ├── 📂 components > components
│ │ │ ├── 📄 App.vue > Root Vue component
│ │ │ ├── 📄 main.ts > Main entry file
│ │ ├── 📄 package.json > Project dependencies and scripts
│ │ ├── 📄 vite.config.ts > Vite configuration
│ ├── 📂 dark > dark project directory
│ ├── 📂 horizontal > horizontal project directory
│ ├── 📂 minisidebar > minisidebar project directory
│ ├── 📂 rtl > rtl project directory
│ ├── 📂 starterkit > starterkit for project
Flexy VueJs Dashboard
📦
├── 📂 docs > Documentation files
├── 📂 package > Main project directory
│ ├── 📂 public > Public assets
│ ├── 📂 src > Source files
│ │ ├── 📂 assets > Static assets
│ │ ├── 📂 images > Image files
│ │ ├── 📂 components > Reusable Vue components
│ │ │ ├── 📂 auth > Authentication components
│ │ │ ├── 📂 dashboard > Dashboard-related components
│ │ │ ├── 📂 shared > Shared UI elements
│ │ │ ├── 📂 style-components > Styled components
│ │ ├── 📂 layouts > Page layouts
│ │ │ ├── 📂 blank > Blank layout
│ │ │ ├── 📂 full > Full layout
│ │ ├── 📂 plugins > Plugin configurations
│ │ │ ├── 📄 vuetify.ts > Vuetify configuration
│ │ ├── 📂 router > Vue Router setup
│ │ ├── 📂 scss > SCSS styling files
│ │ ├── 📂 theme > Theme configuration
│ │ ├── 📂 types > TypeScript type definitions
│ │ │ ├── 📂 dashboard > dashboard page types
│ │ │ ├── 📂 themeTypes > Theme-related types
│ │ ├── 📂 utils > Utility functions
│ │ │ ├── 📂 helpers > Helper functions
│ │ │ ├── 📂 locals > Localization files
│ │ │ ├── 📄 axios.ts > Axios setup for API calls
│ │ ├── 📂 views > Main application views/pages
│ │ │ ├── 📂 auth > Authentication views
│ │ │ ├── 📂 dashboard > Dashboard views
│ │ │ ├── 📂 pages > General pages
│ │ │ ├── 📂 components > components
│ │ ├── 📄 App.vue > Root Vue component
│ │ ├── 📄 main.ts > Main entry file
├── 📄 package.json > Project dependencies and scripts
├── 📄 vite.config.ts > Vite configuration