covidassist/src/components/Question.vue
Tim Ktitarev fecbba5b0b Updated CSS to work on phones
Homescreen adjusted
Warning adjusted
Question component (not Questionnaire) adjusted
Fixed questionmaire typo
2020-03-21 21:48:37 +01:00

35 lines
688 B
Vue

<style scoped>
.question {
padding: 0.5em;
}
button {
display: block;
width: 80%;
margin: 0 auto;
margin-bottom: 5%;
}
</style>
<template>
<div class="question">
<p>{{ question }}</p>
<button v-bind:key="answer" v-for="answer in answers">{{ answer }}</button>
<router-link style="text-decoration:none" to="/questionnaire">
<button class="alert">Ich brauche Hilfe zu dieser Frage</button>
</router-link>
</div>
</template>
<script>
export default {
name: "Question",
props: {
question: String,
answers: Array
}
}
</script>