Skip to content
Snippets Groups Projects
system-notifications.js 387 B
Newer Older
import SystemNotificationManager from '../../../vue/components/SystemNotificationManager.vue';

STUDIP.domReady(() => {
    document.getElementById('system-notifications')?.classList.add('vueified');
    STUDIP.Vue.load().then(({ createApp }) => {
        createApp({
            el: '#system-notifications',
            components: { SystemNotificationManager }
        });
    });
});