
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
@notifyon/vue
Advanced tools
Vue 3 SDK for NotifyOn - Real-time notifications for your Vue applications.
npm install @notifyon/vue
# or
yarn add @notifyon/vue
# or
pnpm add @notifyon/vue
<template>
<NotifyOn
:public-key="publicKey"
:user-id="userId"
/>
<!-- Your app components -->
</template>
<script setup>
import { NotifyOn } from '@notifyon/vue';
const publicKey = 'pk_your_public_key';
const userId = 'user_123';
</script>
<template>
<NotifyOn
public-key="pk_your_public_key"
user-id="user_123"
/>
<!-- Your app components -->
</template>
<script>
import { NotifyOn } from '@notifyon/vue';
export default {
components: {
NotifyOn
}
}
</script>
// main.js
import { createApp } from 'vue';
import { NotifyOn } from '@notifyon/vue';
import App from './App.vue';
const app = createApp(App);
app.component('NotifyOn', NotifyOn);
app.mount('#app');
| Prop | Type | Required | Description |
|---|---|---|---|
public-key | String | Yes | Your NotifyOn public key |
user-id | String | Yes | The user ID to receive notifications |
The component automatically handles server-side rendering in Nuxt.js and other SSR frameworks. It only initializes on the client side.
For Nuxt.js applications, wrap the component with <ClientOnly>:
<template>
<ClientOnly>
<NotifyOn
public-key="pk_your_public_key"
user-id="user_123"
/>
</ClientOnly>
</template>
<script setup>
import { NotifyOn } from '@notifyon/vue';
</script>
MIT
FAQs
Vue SDK for NotifyOn
We found that @notifyon/vue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.