SISSy/src/views/Home.vue

16 lines
210 B
Vue
Raw Normal View History

<template>
2021-11-13 15:49:51 +01:00
<HomeScreen/>
</template>
<script>
// @ is an alias to /src
2021-11-13 15:49:51 +01:00
import HomeScreen from '@/components/HomeScreen.vue'
export default {
name: 'Home',
components: {
2021-11-13 15:49:51 +01:00
HomeScreen
}
}
</script>