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

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