潘志宝
6 天以前 4c014a4f8034bd8c73aba8d909a58f63d5c4ec89
提交 | 用户 | 时间
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>