Files
phundrak.com/frontend/app/components/VocalSynth/Tools.vue
Lucien Cartier-Tilet fceeb5307c
All checks were successful
Publish Docker Images / build-and-publish (push) Successful in 10m25s
feat: fill pages
2025-11-12 04:46:21 +01:00

22 lines
489 B
Vue

<template>
<UPageCard class="bg-background-100 my-10">
<p class="text-xl">
{{ $t('pages.vocal-synthesis.tools') }}
</p>
<div class="flex flex-row gap-5 flex-wrap">
<UBadge
v-for="tool in data?.tools"
:key="tool"
size="md"
variant="solid"
>{{ tool }}</UBadge
>
</div>
</UPageCard>
</template>
<script setup lang="ts">
const { getCachedData } = useDataJson('vocalSynth');
const data = getCachedData();
</script>