> For the complete documentation index, see [llms.txt](https://pcoded.gitbook.io/light-able/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pcoded.gitbook.io/light-able/vue.js/folder-structure.md).

# Folder Structure

Since Light Able comes with a gulp, it has minor differences in structure but one can pick any one and start making changes, both are totally independent.

{% tabs %}
{% tab title="Vue.JS" %}

```
└── 📁 public
 |    ├── favicon.svg
 |    └── index.html
├── 📁 src
 |    └── 📁 assets
 |    |    ├──  📁 css
 |    |    ├──  📁 fonts
 |    |    ├──  📁 images
 |    |    ├──  📁 json
 |    |    └──  favicon.svg
 |    |
 |    └── 📁  components
 |    |    ├──  📁 common
 |    |    ├──  c-footer.vue
 |    |    ├──  c-menu.vue
 |    |    ├──  c-navbar.vue
 |    |    ├──  footer.vue
 |    |    ├──  page-header.vue
 |    |    ├──  right-bar.vue
 |    |    └──  slidebarar.vue
 |    |
 |    └── 📁  layout
 |    |    ├──  c-main.vue
 |    |    ├──  c-vertical.vue
 |    |    ├──  c-navbar.vue
 |    |    ├──  component.vue
 |    |    ├──  layout-2.vue
 |    |    ├──  horizontal.vue
 |    |    ├──  main.vue
 |    |    └──  vertical.vue
 |    |
 |    └── 📁  router
 |    |    ├──  index.js
 |    |    └──  router.js
 |    |
 |    └── 📁  state
 |    |    ├──  📁 modules
 |    |    ├──   helper.js
 |    |    └──   store.js
 |    |
 |    └──  📁 views
 |    |     ├──    📁  components       
 |    |     └──    📁  live-preview  
 |    |
 |    ├──   App.vue 
 |    ├──   authutils.js
 |    └──   main.js    
 |    ├──  .gitingore
├── app.config.json
├── jsconfig.json
├── package.json
└── vue.config.js
```

{% endtab %}
{% endtabs %}

### Light Able Vue Folders Structure

<table><thead><tr><th width="147">File/Folder</th><th>Path</th><th>Description</th></tr></thead><tbody><tr><td>📂Light Able</td><td>root:</td><td>The main folder of our project.</td></tr><tr><td>📁public</td><td>public/</td><td>Contains static assets like favicon and html</td></tr><tr><td>📁 src</td><td>src/</td><td>Contains Vue components, routers, layouts etc. </td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://pcoded.gitbook.io/light-able/vue.js/folder-structure.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
