Added component for tooltips and categories

This commit is contained in:
2023-06-22 14:40:33 +02:00
parent ddc7b72871
commit bd8e96047d
4 changed files with 43 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
<script setup lang="ts">
import xmlInputFieldComponent from '@/components/xml/XmlInputFieldComponent.vue';
import xmlOutputFieldComponent from '@/components/xml/XmlOutputFieldComponent.vue';
import tooltipController from '@/components/xml/tooltips/TooltipController.vue';
import tooltipComponent from '@/components/xml/tooltips/TooltipComponent.vue';
import { ref } from 'vue';
@@ -17,6 +17,6 @@ const query = ref('');
<xmlInputFieldComponent stylized-name="XPath" :data="query" @update="(data) => {query = data}"></xmlInputFieldComponent>
</div>
<xmlOutputFieldComponent tool="xpath" :xml="xml" :query="query"></xmlOutputFieldComponent>
<tooltipController></tooltipController>
<tooltipComponent></tooltipComponent>
</div>
</template>