import type { App } from 'vue'; import { Badge, NotificationSignal } from '../directives'; export function registerDirective(app: App) { app.directive('badge', Badge); app.directive('notification-signal', NotificationSignal); }