24 lines
510 B
Vue
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>
|