2022-11-01 18:09:19 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
import { Warning } from '@element-plus/icons-vue'
|
|
|
|
|
|
|
|
defineProps({
|
|
|
|
type: String,
|
|
|
|
details: String,
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<span class="flex items-center">
|
2022-11-01 21:52:16 +08:00
|
|
|
<code class="api-typing mr-1">
|
2022-11-01 18:09:19 +08:00
|
|
|
{{ type }}
|
2022-11-01 20:31:39 +08:00
|
|
|
</code>
|
2022-11-06 14:46:35 +08:00
|
|
|
<ClientOnly>
|
|
|
|
<ElTooltip v-if="details" effect="light" trigger="click">
|
|
|
|
<ElButton text :icon="Warning" class="p-2 text-4" />
|
|
|
|
<template #content>
|
|
|
|
<slot>
|
|
|
|
<div class="m-1">
|
|
|
|
<code
|
|
|
|
style="
|
|
|
|
color: var(--code-tooltip-color);
|
|
|
|
background-color: var(--code-tooltip-bg-color);
|
|
|
|
"
|
|
|
|
>
|
|
|
|
{{ details }}
|
|
|
|
</code>
|
|
|
|
</div>
|
|
|
|
</slot>
|
|
|
|
</template>
|
|
|
|
</ElTooltip>
|
|
|
|
</ClientOnly>
|
2022-11-01 18:09:19 +08:00
|
|
|
</span>
|
|
|
|
</template>
|