Getting Started 
Get started with Vue Notifications quickly by following steps below.
If you are using Nuxt, you can skip this page and go to Nuxt tutorial.
Installation 
sh
npm add @outloud/vue-notificationssh
pnpm add @outloud/vue-notificationssh
yarn add @outloud/vue-notificationssh
bun add @outloud/vue-notificationsSetup 
1. Register the plugin to your app in your entry file. 
See Configuration for options.
ts
import { createApp } from 'vue'
import { createNotifications } from '@outloud/vue-notifications'
import App from './App.vue'
const app = createApp(App)
app.use(createNotifications({/* options */})) 
app.mount('#app')2. Import required CSS 
ts
import '@outloud/vue-notifications/style.css'3. Add notifications container component 
The best place is to add it to your main App.vue file.
vue
<template>
  <div>
    ...
    <ONotificationsContainer />
  </div>
</template>
<script setup lang="ts">
import { ONotificationsContainer } from '@outloud/vue-notifications'
</script>