Files
2026-05-01 20:41:07 +02:00

28 lines
535 B
Vue

<script setup>
import {onMounted, reactive} from "vue";
const props = defineProps({
textName: { type: String},
belongsTo: { type: String},
})
const contentData = reactive({
content: '',
});
onMounted(async () => {
const response = await fetch('/api/v1/core/retrieve-text-resource/' + props.textName);
const data = await response.json();
Object.assign(contentData, data);
});
</script>
<template>
<label :for="props.belongsTo" v-html="contentData.content"></label>
</template>
<style scoped>
</style>