# Layout

This contains the main layout which includes the header, left-menu and the right-side component. The right-side component contains the right-side bar.

## importing components :

The components can be imported using the keyword `import`

### eg:

`import vueadmin_header from "./components/layouts/header/fixed-header.vue"`

The component which is being imported is to declared in the components object:

### eg:

`components: {vueadmin_header,left_side,right_side}`

The component exporting is done using export default

### eg:

`export default { ... }`


---

# Agent Instructions: 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://lorvent.gitbook.io/vuejs-admin/app-structure/layout.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.
