add skeleton

This commit is contained in:
Tim Wundenberg
2021-07-28 20:19:05 +02:00
parent 21d61f60bf
commit e12bbaaf9f
11 changed files with 288 additions and 45 deletions

View File

@@ -1,5 +1,18 @@
<template>
<div class="about">
<h1>This is an about page</h1>
<img alt="Vue logo" src="../assets/logo.png" />
<HelloWorld msg="Welcome to Your Vue.js App" />
</div>
</template>
<script>
import HelloWorld from "@/components/HelloWorld.vue";
// @ is an alias to /src
export default {
name: "Home",
components: {
HelloWorld,
},
};
</script>