ubiquitous-computing-geo-ti.../frontend/src/views/Home.vue

26 lines
226 B
Vue
Raw Normal View History

2020-04-15 18:38:30 +02:00
<template>
<div class="home">
<h3>Home View</h3>
2020-04-21 16:10:53 +02:00
2020-04-15 18:38:30 +02:00
</div>
</template>
<script>
// @ is an alias to /src
export default {
name: "Home",
components: {
}
};
</script>
2020-04-19 11:35:25 +02:00
<style scoped>
2020-04-21 16:10:53 +02:00
.home {
}
2020-04-19 11:35:25 +02:00
</style>