aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/javascripts/bootstrap/responsive-navigation.js
blob: ad39d2be0922dfa2bfb274bc10f23b736ab85347 (plain)
1
2
3
4
5
6
7
8
9
10
import ResponsiveNavigation from '../../../vue/components/responsive/ResponsiveNavigation.vue';

STUDIP.domReady(() => {
    STUDIP.Vue.load().then(({ createApp }) => {
        createApp({
            el: '#responsive-menu',
            components: { ResponsiveNavigation }
        });
    });
});