> For the complete documentation index, see [llms.txt](https://ryunosukee.gitbook.io/vue3-datatables/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ryunosukee.gitbook.io/vue3-datatables/getting-started.md).

# Getting Started

Instalation:

```
npm i @dcorrea-estrav/vue3-datatables
```

Require the script:

```
import {ServerTable, ClientTable, Event} from 'vue3-datatables';
```

Register the component(s)

```
app.use(ClientTable, [options = {}], [useVuex = false], [theme = 'tailwind'], [swappables = {}]);
```

{% hint style="info" %}
The above code is only for the purpose of documentation. The actual code would look something like this:

`app.use(ServerTable, {}, false, 'tailwind')`
{% endhint %}
