Add simpel QAPage

This commit is contained in:
Raymonzut
2020-04-25 13:47:40 +02:00
parent 75c765ce8e
commit cce7a20a7f
+25
View File
@@ -0,0 +1,25 @@
<template>
<div id="QAPage">
<QA
q="What is this site about? "
a="This site is about me and the stuff I make "
></QA>
<QA
q="Why is it still so empty?"
a="Because I am framework hopping "
></QA>
</div>
</template>
<script>
import QA from '@/components/QA'
export default {
name: "QAPAge",
components: { QA }
}
</script>
<style scoped></style>