mirror of
https://git.schule.click/GymSedan/SISSy.git
synced 2025-04-11 22:14:26 +02:00
16 lines
No EOL
414 B
Vue
16 lines
No EOL
414 B
Vue
<template>
|
||
<div class="HomeScreen">
|
||
<h1>SISSy – Sedan Informations- und Stundenplansystem</h1>
|
||
<router-link to="/">Home</router-link> |
|
||
<router-link to="/ids">Infodisplay Schüler</router-link>|
|
||
<router-link to="/idl">Infodisplay Lehrer</router-link>|
|
||
<router-link to="/about">About</router-link>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: 'HomeScreen',
|
||
props: {}
|
||
}
|
||
</script> |