| 1234567891011121314151617181920 |
- <template>
- <el-tooltip max-width="200" :placement="props.placement" :content="props.tip" :delay="200" effect="light">
- <SvgIcon name="ele-QuestionFilled" color="#5cadff" class="cursor-help"></SvgIcon>
- </el-tooltip>
- </template>
- <script setup lang="ts" name="ExtTip">
- const props = defineProps({
- tip: {
- type: String,
- required: true
- },
- //toptop-starttop-endbottombottom-startbottom-endleftleft-startleft-endrightright-startright-end
- placement: {
- type: String,
- default: 'top'
- }
- })
- </script>
|