sebin-reference/src/views/Home.vue
sebin.nyshkim@icloud.com ae5d4d2633 feat: ♻️ refactor ALL THE THINGS!!! (again)
Update to Vue 3 and employ Vue Router, additional design changes and navigation changes
2022-01-04 00:39:02 +01:00

24 lines
510 B
Vue

<template>
<prose>
<welcome>
<template #main>Sebin Nyshkim</template>
<template #sub>Character Reference Page</template>
</welcome>
<h3>Welcome to Sebin's Ref Page</h3>
<p>
Want to learn more about this handsome dragon? You've come to the right
place!
</p>
</prose>
</template>
<script>
import Prose from "@/components/Prose.vue";
import Welcome from "@/components/Welcome.vue";
export default {
name: "Home",
components: { Prose, Welcome },
};
</script>