Added tooltips for XPath 1.0

This commit is contained in:
2023-06-27 08:39:17 +02:00
parent 233f41237e
commit c589c3713e
3 changed files with 501 additions and 47 deletions

View File

@@ -1,11 +0,0 @@
<script setup lang="ts">
</script>
<template>
<div class="flex flex-row">
<button class="grow-0 tool-button ">&lt;</button>
<div id="content" class="w-1/3">fdfgjoejgioej</div>
</div>
</template>

View File

@@ -34,12 +34,10 @@ function entryHasExamples() {
<h4 v-if="entryHasArguments()" class="text-xl mt-4 mb-2 font-bold">Arguments</h4>
<table v-if="entryHasArguments()" class="w-full">
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr>
<tr v-for="arg in props.entryData.arguments">
<td class="text-center">{{ arg.name }}</td>
<td class="text-center">{{ arg.type }}</td>
<td class="text-center">{{ arg.description }}</td>
</tr>