Port frontend to Bootstrap 5.3, split components

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2023-09-30 19:40:11 +02:00
parent b8fd877654
commit 8c0807d486
No known key found for this signature in database
GPG key ID: D91C3E91E4CAD6F5
14 changed files with 813 additions and 830 deletions

View file

@ -0,0 +1,22 @@
<!-- eslint-disable vue/no-v-html -->
<template>
<div class="card border-primary-subtle mb-3">
<div
class="card-header bg-primary-subtle"
v-html="$t('title-explanation')"
/>
<div class="card-body">
<ul>
<li
v-for="(explanation, idx) in $t('items-explanation')"
:key="`idx${idx}`"
>
{{ explanation }}
</li>
</ul>
</div>
</div>
</template>
<script>
export default { name: 'AppExplanation' }
</script>