提交 | 用户 | 时间 | ||
314507 | 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> |