export function useNotification( message: string, type: string, title?: string ) { const duration = 5000; const createProgressBar = (duration: number, message: string) => { return h('div', [ h('p', message), h('div', { class: 'el-notification__progress', style: { animationDuration: `${duration}ms` } }) ]); }; ElNotification({ title: title, duration, message: createProgressBar(duration, message), type: type } as import('element-plus').NotificationOptions); }