23 lines
857 B
Vue
23 lines
857 B
Vue
<script setup lang="ts">
|
|
import xmlInputFieldToolbarComponent from '@/components/xml/XmlInputFieldToolbarComponent.vue';
|
|
|
|
const props = defineProps(
|
|
{
|
|
transformationName: {type: String},
|
|
}
|
|
)
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col w-full h-full items-center gap-4">
|
|
<div class="w-full">
|
|
<xmlInputFieldToolbarComponent prettyName="XML" fieldName="xml"></xmlInputFieldToolbarComponent>
|
|
<textarea id="xmlfield" class="w-full dark:bg-gray-600 border border-slate-400 rounded-md"></textarea>
|
|
</div>
|
|
<div class="w-full">
|
|
<xmlInputFieldToolbarComponent prettyName="XSLT" fieldName="xslt"></xmlInputFieldToolbarComponent>
|
|
<textarea id="transformField" class="w-full dark:bg-gray-600 border border-slate-400 rounded-md"></textarea>
|
|
</div>
|
|
</div>
|
|
</template> |