mirror of
https://github.com/Luzifer/ots.git
synced 2025-12-13 15:29:00 -05:00
Port to Vue3 and TypeScript
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
b447417d0f
commit
e572d2f545
33 changed files with 2297 additions and 5930 deletions
|
|
@ -1,4 +1,3 @@
|
|||
<!-- eslint-disable vue/no-v-html -->
|
||||
<template>
|
||||
<div class="card border-primary-subtle mb-3">
|
||||
<div
|
||||
|
|
@ -8,7 +7,7 @@
|
|||
<div class="card-body">
|
||||
<ul>
|
||||
<li
|
||||
v-for="(explanation, idx) in $t('items-explanation')"
|
||||
v-for="(explanation, idx) in $tm('items-explanation')"
|
||||
:key="`idx${idx}`"
|
||||
>
|
||||
{{ explanation }}
|
||||
|
|
@ -17,6 +16,11 @@
|
|||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default { name: 'AppExplanation' }
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'AppExplanation',
|
||||
})
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue