# Vue templates contents

> Discover what's included in CoreUI Vue Admin Template, including our precompiled and source code flavors.

## Project structure

Once downloaded, unzip the compressed folder and you'll see something like this:

```text
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.js
```

**TypeScript based project**

TypeScript project is available only in PRO version.

```text
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.js
```

This is the most basic form of CoreUI Vue Admin Templates.
