mirror of
https://github.com/Luzifer/ots.git
synced 2025-06-06 21:58:54 -04:00
26 lines
530 B
Vue
26 lines
530 B
Vue
<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 $tm('items-explanation')"
|
|
:key="`idx${idx}`"
|
|
>
|
|
{{ explanation }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue'
|
|
|
|
export default defineComponent({
|
|
name: 'AppExplanation',
|
|
})
|
|
</script>
|