mirror of
https://gitee.com/myxzgzs/boyue-vue-pro.git
synced 2025-08-08 16:32:46 +08:00
15 lines
393 B
Vue
15 lines
393 B
Vue
<script setup lang="ts">
|
|
import { propTypes } from '@/utils/propTypes'
|
|
defineProps({
|
|
titel: propTypes.string.def(''),
|
|
message: propTypes.string.def(''),
|
|
icon: propTypes.string.def('ep:question-filled')
|
|
})
|
|
</script>
|
|
<template>
|
|
<span>{{ titel }}</span>
|
|
<ElTooltip :content="message" placement="top">
|
|
<Icon :icon="icon" class="ml-1px relative top-1px" />
|
|
</ElTooltip>
|
|
</template>
|