mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-15 02:40:46 +08:00
36 lines
837 B
Vue
36 lines
837 B
Vue
<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>
|