mirror of
https://git.schule.click/GymSedan/SISSy.git
synced 2025-04-19 13:34:26 +02:00
15 lines
210 B
Vue
15 lines
210 B
Vue
<template>
|
|
<HomeScreen/>
|
|
</template>
|
|
|
|
<script>
|
|
// @ is an alias to /src
|
|
import HomeScreen from '@/components/HomeScreen.vue'
|
|
|
|
export default {
|
|
name: 'Home',
|
|
components: {
|
|
HomeScreen
|
|
}
|
|
}
|
|
</script>
|