export interface IHaexNotication { title: string; description?: string; icon?: string; image?: string; alt?: string; } export const useNotificationStore = defineStore('notificationStore', () => { const notifications = ref([ { title: 'huhu', alt: 'test', description: 'Ganz was tolles', image: 'https://cdn.flyonui.com/fy-assets/avatar/avatar-1.png', }, ]); return { notifications, }; });