Rename question and answer to Question and Answer

master
Raymonzut 4 years ago
parent a16d3d9cfa
commit 8a48b2db2b
No known key found for this signature in database
GPG Key ID: 97CF2D8BE2C69FC7
  1. 2
      client/src/components/Answer.vue
  2. 2
      client/src/components/Question.vue
  3. 10
      client/src/components/qa.vue

@ -6,7 +6,7 @@
<script>
export default {
name: 'answer',
name: 'Answer',
props: {
a: String
}

@ -6,7 +6,7 @@
<script>
export default {
name: 'question',
name: 'Question',
props: {
q: String
}

@ -1,19 +1,19 @@
<template>
<div id='qa'>
<question :q='q'/>
<answer :a='a'/>
<Question :q='q'></Question>
<Answer :a='a'></Answer>
</div>
</template>
<script>
import question from './question.vue'
import answer from './answer.vue'
import Question from './Question.vue'
import Answer from './Answer.vue'
export default {
name: 'qa',
components: {
question,
answer,
Answer,
},
props: {
q: String,

Loading…
Cancel
Save