aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/javascripts/bootstrap/system-notifications.js
blob: 7a85fcdbfbce669b45a63051e5016ca3464edfab (plain)
1
2
3
4
5
6
7
8
9
10
11
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 }
        });
    });
});