Added dynamic engine selection

This commit is contained in:
2023-06-16 11:17:10 +02:00
parent bd16c04081
commit f7e147c882
2 changed files with 41 additions and 15 deletions

View File

@@ -13,6 +13,6 @@ const query = ref('');
<div id="layout" class="flex flex-col lg:flex-row w-full h-full gap-4">
<xmlInputFieldComponent prettyName="XSLT" @update:xml="(data) => {xml = data}" @update:transform="(data) => {query = data}"></xmlInputFieldComponent>
<xmlOutputFieldComponent tool="xslt" :xml="xml" :query="query"></xmlOutputFieldComponent>
<xmlOutputFieldComponent tool="xpath" :xml="xml" :query="query"></xmlOutputFieldComponent>
</div>
</template>