2025-03-31 20:31:29 +08:00

28 lines
632 B
Vue

<template>
<component class="tmagic-design-tooltip" :is="uiComponent" v-bind="uiProps">
<template #content>
<slot name="content"></slot>
</template>
<slot></slot>
</component>
</template>
<script setup lang="ts">
import { computed } from 'vue';
import { getDesignConfig } from './config';
import type { TooltipProps } from './types';
defineOptions({
name: 'TMTooltip',
});
const props = defineProps<TooltipProps>();
const ui = getDesignConfig('components')?.tooltip;
const uiComponent = ui?.component || 'el-tooltip';
const uiProps = computed<TooltipProps>(() => ui?.props(props) || props);
</script>