Welcome

Awesome to have you here!

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.

npm i vui3
# OR
yarn vui3

Remember that this library works on Vue 3

main.js
import { createApp } from 'vue';
import Vui from 'vui3';
import App from './App.vue';

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

app.mount('#app');

Last updated