Rename question and answer to Question and Answer

This commit is contained in:
Raymonzut
2020-04-24 13:05:09 +02:00
parent a16d3d9cfa
commit 8a48b2db2b
3 changed files with 7 additions and 7 deletions
@@ -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
}
+5 -5
View File
@@ -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,