1234567891011121314151617181920212223242526272829303132333435 |
- <script setup lang="ts">
- import { Warning } from '@element-plus/icons-vue'
- defineProps({
- type: String,
- details: String,
- })
- </script>
- <template>
- <span class="inline-flex items-center">
- <code class="api-typing mr-1">
- {{ type }}
- </code>
- <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>
- </span>
- </template>
|