Installation
- Step 1: Install
@kyvg/vue3-notificationlocally
bash
npm install --save @kyvg/vue3-notificationbash
yarn add @kyvg/vue3-notification- Step 2: Add dependencies to your
main.js:
javascript
import { createApp } from 'vue' import Notifications from '@kyvg/vue3-notification' const app = createApp() app.use(Notifications)- Step 3: Add the global component to your
App.vue:
vue
<template> <!-- your code --> <notifications /> </template>