mirror of
https://git.schule.click/GymSedan/SISSy.git
synced 2025-07-04 00:03:11 +02:00
Basisrouting eingerichtet
This commit is contained in:
parent
18970db9dd
commit
c713629edf
16 changed files with 504 additions and 134 deletions
|
@ -1,5 +1,15 @@
|
|||
<template>
|
||||
<div class="about">
|
||||
<h1>This is an about page</h1>
|
||||
</div>
|
||||
<AboutScreen msg="Welcome to Your Vue.js App"/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// @ is an alias to /src
|
||||
import AboutScreen from '@/components/AboutScreen.vue'
|
||||
|
||||
export default {
|
||||
name: 'About',
|
||||
components: {
|
||||
AboutScreen
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -1,18 +1,15 @@
|
|||
<template>
|
||||
<div class="home">
|
||||
<img alt="Vue logo" src="../assets/logo.png">
|
||||
<HelloWorld msg="Welcome to Your Vue.js App"/>
|
||||
</div>
|
||||
<HomeScreen/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// @ is an alias to /src
|
||||
import HelloWorld from '@/components/HelloWorld.vue'
|
||||
import HomeScreen from '@/components/HomeScreen.vue'
|
||||
|
||||
export default {
|
||||
name: 'Home',
|
||||
components: {
|
||||
HelloWorld
|
||||
HomeScreen
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
37
src/views/InfodisplayLehrer.vue
Normal file
37
src/views/InfodisplayLehrer.vue
Normal file
|
@ -0,0 +1,37 @@
|
|||
<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>
|
15
src/views/InfodisplaySchueler.vue
Normal file
15
src/views/InfodisplaySchueler.vue
Normal file
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<div class="hello">
|
||||
<h1>Schueler</h1>
|
||||
{{ msg }}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'VPSchueler',
|
||||
props: {
|
||||
msg: String
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue