This commit is contained in:
Logan Williams
2023-05-16 14:16:14 +02:00
commit 731d6d7d03
18 changed files with 6425 additions and 0 deletions

18
src/views/HomeView.vue Normal file
View File

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