9 lines
283 B
Vue
9 lines
283 B
Vue
|
|
<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>
|