Vue templates contents
Discover what's included in CoreUI Vue Admin Template, including our precompiled and source code flavors.
On this page
Project structure
Once downloaded, unzip the compressed folder and you’ll see something like this:
coreui-vue-admin-template/
├── public/
├── src/
│ ├── assets/
│ │ ├── brand/
│ │ ├── icons/
│ │ └── images/
│ ├── components/
│ ├── layout/
│ ├── router/
│ ├── styles/
│ ├── views/
│ │ ├── base/
│ │ ├── buttons/
│ │ ├── css/
│ │ ├── icons/
│ │ └── notifications/
│ ├── App.vue
│ ├── _nav.js
│ └── main.js
├── tests/
├── ...
├── babel.config.js
├── cypress.json
├── jest.config.js
├── jsconfig.json
├── package.json
└── vue.config.jsTypeScript based project
TypeScript project is available only in PRO version.
coreui-vue-admin-template/
├── public/
├── src/
│ ├── assets/
│ │ ├── brand/
│ │ ├── icons/
│ │ └── images/
│ ├── components/
│ ├── layout/
│ ├── router/
│ ├── styles/
│ ├── views/
│ │ ├── base/
│ │ ├── buttons/
│ │ ├── css/
│ │ ├── icons/
│ │ └── notifications/
│ ├── App.vue
│ ├── _nav.ts
│ ├── main.ts
│ └── shims-vue.d.ts
├── tests/
├── ...
├── babel.config.js
├── cypress.json
├── jest.config.js
├── package.json
├── tsconfig.json
└── vue.config.jsThis is the most basic form of CoreUI Vue Admin Templates.