潘志宝
22 小时以前 221918bba28d2384d03c596a68256d7832e4a0e0
提交 | 用户 | 时间
820397 1 <script lang="ts" setup>
H 2 import { propTypes } from '@/utils/propTypes'
3
4 defineOptions({ name: 'Tooltip' })
5
6 defineProps({
7   title: propTypes.string.def(''),
8   message: propTypes.string.def(''),
9   icon: propTypes.string.def('ep:question-filled')
10 })
11 </script>
12 <template>
13   <span>{{ title }}</span>
14   <ElTooltip :content="message" placement="top">
15     <Icon :icon="icon" class="relative top-1px ml-1px" />
16   </ElTooltip>
17 </template>