Directory Structure
A simple and intuitive folder structure makes it easy for you to find what you want.
Under theberry-vuetify-vue/
directory, you will find the following folder structure.
datta-able-vue-bootstrap-js
..
├── public
│ ├── assets
├── src
│ ├── assets
│ │ ├── fonts
│ │ ├── images
│ │ ├── scss -> Theme overrides styles
│ ├── components
│ ├── layouts
│ │ ├── blank
│ │ ├── dashboard
│ ├── router -> Different route based on layouts
│ ├── stores -> Getters and Actions
│ ├── third-party
│ ├── types -> Types for TypeScript
│ ├── utils
│ │ ├── utils.ts
│ ├── views -> All Page views
│ ├── App.vue -> Starting point of application
│ ├── config.ts -> Template const value & live customizer
│ ├── main.ts -> Application root ts file
├── eslint.config.ts
├── tsconfig.json
├── index.html
├── package.json
├── vite.config.ts
Last updated