38 lines
605 B
Vue
38 lines
605 B
Vue
|
<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>
|