kandimat-user-app/src/app/faq/components/index.vue
2019-04-08 10:16:16 +02:00

40 lines
602 B
Vue

<template>
<section>
<h1>{{ $t('faq.headline') }}</h1>
<ul>
<li v-for="question of $t('faq.questions')">
<h2>{{ question.title }}</h2>
<p v-for="answer of question.answer">
{{ answer }}
</p>
</li>
</ul>
</section>
</template>
<script>
export default {
name: 'FAQ'
}
</script>
<style lang="scss" scoped>
@import "~@/styles/layout";
h1 {
margin-bottom: $base-gap;
}
ul {
list-style: none;
li:not(:last-child) {
margin-bottom: $base-gap * 2;
}
}
h2 {
margin-bottom: $small-gap;
}
</style>