fix: corriger la syntaxe et ajouter des retours à la ligne manquants dans plusieurs fichiers

This commit is contained in:
2025-12-18 23:18:18 +01:00
parent 6654f42588
commit 929899722b
22 changed files with 209 additions and 161 deletions

View File

@@ -4,16 +4,16 @@ import type { PropType } from 'vue'
defineProps({
text: {
type: [String, Number],
required: true,
required: true
},
hover: {
type: String,
required: true,
required: true
},
position: {
type: String as PropType<'top' | 'right' | 'bottom' | 'left'>,
default: 'top',
},
default: 'top'
}
})
</script>
@@ -25,11 +25,11 @@ defineProps({
:content="{
align: 'center',
side: position,
sideOffset: 8,
sideOffset: 8
}"
:text="hover"
>
<strong class="leading-3 cursor-help">{{ text }}</strong>
</UTooltip>
</ClientOnly>
</template>
</template>