Add simpel QAPage

master
Raymonzut 4 years ago
parent 75c765ce8e
commit cce7a20a7f
No known key found for this signature in database
GPG Key ID: 97CF2D8BE2C69FC7
  1. 25
      client/src/views/QAPage.vue

@ -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>
Loading…
Cancel
Save