mirror of
https://git.schule.click/GymSedan/SISSy.git
synced 2025-12-17 16:29:22 +01:00
16 lines
409 B
Vue
16 lines
409 B
Vue
|
|
<template>
|
|||
|
|
<div class="about">
|
|||
|
|
<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>
|