ubiquitous-computing-geo-ti.../frontend/src/views/Home.vue
2020-04-21 16:10:53 +02:00

26 lines
226 B
Vue

<template>
<div class="home">
<h3>Home View</h3>
</div>
</template>
<script>
// @ is an alias to /src
export default {
name: "Home",
components: {
}
};
</script>
<style scoped>
.home {
}
</style>