UNPKG

@bg-dev/nuxt-naiveui

Version:

Unofficial Naive UI module for Nuxt

11 lines (10 loc) 240 B
export function useNaiveNotification() { function create(opts) { if (import.meta.client) { window.dispatchEvent( new CustomEvent("naiveui:notification:create", { detail: opts }) ); } } return { create }; }