# Welcome

## Getting started

To add Vui to your project you have to get through two steps: adding the package, adding this library to your Vue instance.

```bash
npm i vui3
# OR
yarn vui3
```

{% hint style="warning" %}
&#x20;Remember that this library works on Vue 3
{% endhint %}

{% code title="main.js" %}

```javascript
import { createApp } from 'vue';
import Vui from 'vui3';
import App from './App.vue';

const app = createApp(App);
app.use(Vui);

app.mount('#app');
```

{% endcode %}
