/* * @Descripttion: * @version: * @Author: 曹文丽 * @Date: 2023-08-31 20:54:14 * @LastEditors: 曹文丽 * @LastEditTime: 2023-09-01 09:40:57 */ import { withInstall } from '../../utils/tools'; import events from './notifications/events.vue'; import warn from './notifications/warn.vue'; import notify from './notifications/notify.vue'; import notificate from './mytask/notificate.vue'; import warning from './mytask/warning.vue'; const YaEvents = withInstall(events, 'YaEvents'); const YaWarn = withInstall(warn, 'YaWarn'); const YaNotify = withInstall(notify, 'YaNotify'); const YaNotificate = withInstall(notificate, 'YaNotificate'); const YaWarning = withInstall(warning, 'YaWarning'); export { YaEvents, YaWarn, YaNotify, YaNotificate, YaWarning };