SISSy/src/components/HomeScreen.vue

16 lines
No EOL
414 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>