SISSy/src/views/InfodisplayLehrer.vue

38 lines
605 B
Vue
Raw Normal View History

2021-11-13 15:49:51 +01:00
<template>
<v-app>
<v-navigation-drawer app>
<!-- -->
</v-navigation-drawer>
<v-app-bar app>
<!-- -->
</v-app-bar>
<!-- Sizes your content based upon application components -->
<v-main>
<!-- Provides the application the proper gutter -->
<v-container fluid>
<!-- If using vue-router -->
<router-view></router-view>
</v-container>
</v-main>
<v-footer app>
<!-- -->
</v-footer>
</v-app>
</template>
<script>
export default {
name: 'InfodisplayLehrer',
props: {
msg: String
}
}
</script>