This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/components/Answer.vue

18 lines
571 B
Vue

<template>
<details v-if="$t('faq.questions.' + question, [], false)" :class="['border mb-3', small ? 'small' : '']" @click="$emit('click')">
<summary :class="['bg-light', small ? 'p-2' : 'p-3']"><T>faq.questions.{{question}}.question</T></summary>
<div :class="['border-top', small ? 'p-2' : 'p-3']">
<T>faq.questions.{{question}}.answer</T>
</div>
</details>
</template>
<script>
export default {
props: {
question: { required: true },
small: { type: Boolean },
}
}
</script>