Skip to content
On this page

Folder Structure

Summary of package resources.

Content of package:

  • Typescript-version and Javascript-version
    • full-version
    • starter-kit
    • Documentation.html
bash
PrimeDash_Typescript
  └── Full-version and Starter-kit
      ├── .vscode           //vscode setting file
      ├── app
      ├── bootstrap
      ├── config
      ├── database
      ├── public
      ├── resources/
      ├──  ├── styles            // Core and user style files
      └──  ├── {ts/js}
           ├──  ├── assets       // Template and logo reside here
           ├──  ├── components   //All custom global component
           ├──  ├── composable   // Composable functions
           ├──  ├── layouts      // Layouts and navigation and navbar components
           ├──  ├── menus        // navigation menu files
           ├──  ├── plugins      // All plugin reside here like Vuetify and Axios mock adaptor
           ├──  ├── router       // Router files
           ├──  ├── stores       // Pinia store files
           ├──  ├── utils        // util functions
           ├──  ├── views        // All views files
           ├──  ├── App.vue 
           ├──  ├── main.ts
      ├── routes/
      ├── storage/
      ├── test/     
      ├── .browserslistrc
      ├── .editorconfig
      ├── .env.example
      ├── .eslintrc
      ├── .styleci
      ├── .gitignore
      ├── .stylelintrc
      ├── appConfig
      ├── artisan
      ├── composer
      ├── composer.lock
      ├── auto-imports.d
      ├── env.d
      ├── phpunit.xml
      ├── index.html
      ├── package.json
      ├── README.md
      ├── tsconfig
      ├── vite.config
  • Full-version: This setup mirrors the live demo in its entirety, feel free to eliminate any unused elements or seamlessly insert your own content as needed.
  • Starter-kit: The Starter-Kit serves as a streamlined template, offering a simplified foundation to expedite the commencement of your project. Rather than engaging in the task of eliminating unnecessary components, this kit provides a swift starting point.