Files
release11-tools/Frontend/src/components/xml/XmlInputFieldComponent.vue
2023-06-15 11:34:16 +02:00

23 lines
553 B
Vue

<script setup>
const props = defineProps(
{
transformationName: {type: String},
}
)
</script>
<template>
<div class="flex flex-col gap-6 w-full h-full items-center">
<label for="xmlfield" class="dark:text-white">XML</label>
<textarea id="xmlfield" class="w-1/2 h-36 bg-gray-500">
</textarea>
<label for="transformField" class="dark:text-white">{{ props.transformationName }}</label>
<textarea id="transformField" class="w-1/2 h-36 bg-gray-500">
</textarea>
</div>
</template>