feat: ♻️ refactor ALL THE THINGS!!! (again)

Update to Vue 3 and employ Vue Router, additional design changes and navigation changes
This commit is contained in:
sebin.nyshkim@icloud.com 2022-01-04 00:39:02 +01:00
parent e9f29b655d
commit ae5d4d2633
59 changed files with 2768 additions and 1381 deletions

24
src/views/Home.vue Normal file
View file

@ -0,0 +1,24 @@
<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>