mirror of
https://github.com/Luzifer/ots.git
synced 2025-08-02 11:16:25 -04:00
Port frontend to Bootstrap 5.3, split components
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
b8fd877654
commit
8c0807d486
14 changed files with 813 additions and 830 deletions
22
src/components/explanation.vue
Normal file
22
src/components/explanation.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue