commit
8e671bf733
7 changed files with 14 additions and 14 deletions
@ -1,19 +1,19 @@ |
|||||||
<template> |
<template> |
||||||
<div id='qa'> |
<div id='qa'> |
||||||
<question :q='q'/> |
<Question :q='q'></Question> |
||||||
<answer :a='a'/> |
<Answer :a='a'></Answer> |
||||||
</div> |
</div> |
||||||
</template> |
</template> |
||||||
|
|
||||||
<script> |
<script> |
||||||
import question from './question.vue' |
import Question from './Question.vue' |
||||||
import answer from './answer.vue' |
import Answer from './Answer.vue' |
||||||
|
|
||||||
export default { |
export default { |
||||||
name: 'qa', |
name: 'QA', |
||||||
components: { |
components: { |
||||||
question, |
question, |
||||||
answer, |
Answer, |
||||||
}, |
}, |
||||||
props: { |
props: { |
||||||
q: String, |
q: String, |
Loading…
Reference in new issue