Files
phundrak.com-frontend/app/components/VocalSynth/Tools.vue

9 lines
283 B
Vue
Raw Normal View History

2025-11-11 19:12:21 +01:00
<template>
<UiBadgeListCard v-if="data" :tools="data.tools">{{ $t('pages.vocal-synthesis.tools') }}</UiBadgeListCard>
</template>
<script setup lang="ts">
// Inject data provided by the page to avoid hydration issues with MDC components
const data = inject('pageData');
</script>