clean up + start

This commit is contained in:
2023-08-25 17:32:37 +02:00
parent cf985703ab
commit d21b5d100d
9 changed files with 179 additions and 106 deletions

View File

@@ -1,18 +1,17 @@
<template>
<div class="home">
<img alt="Vue logo" src="../assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</div>
<div class="home">
</div>
</template>
<script>
// @ is an alias to /src
import HelloWorld from '@/components/HelloWorld.vue'
<style>
.logo {
height: 50vh;
}
</style>
export default {
name: 'HomeView',
components: {
HelloWorld
}
}
<script>
export default {
name: 'HomeView',
}
</script>