ExtTip.vue 521 B

1234567891011121314151617181920
  1. <template>
  2. <el-tooltip max-width="200" :placement="props.placement" :content="props.tip" :delay="200" effect="light">
  3. <SvgIcon name="ele-QuestionFilled" color="#5cadff" class="cursor-help"></SvgIcon>
  4. </el-tooltip>
  5. </template>
  6. <script setup lang="ts" name="ExtTip">
  7. const props = defineProps({
  8. tip: {
  9. type: String,
  10. required: true
  11. },
  12. //toptop-starttop-endbottombottom-startbottom-endleftleft-startleft-endrightright-startright-end
  13. placement: {
  14. type: String,
  15. default: 'top'
  16. }
  17. })
  18. </script>