Files
wyczarujprezent.pl/modules/jxmegalayout/views/js/app/components/tools/tabs/jxml-tools-extra-content.vue
2024-10-28 22:14:22 +01:00

16 lines
246 B
Vue

<template>
<div class="jxpanel">
<div v-html="data"></div>
</div>
</template>
<script>
module.exports = {
props: ['data'],
data: function() {
return {
status: null,
content: null
}
}
}
</script>