Newer
Older
Nanping_sponge_JXKH / src / components / popover / index.vue
@liyingjing liyingjing on 25 Oct 588 bytes 海绵绩效考个
<template>
  <el-popover
    placement="right"
    :width="props.width"
    trigger="hover"
  >
    <div class="popoverContent">
      <slot></slot>
    </div>
    <template #reference>
      <slot name="reference">
        <el-icon :size="14" class="icon"><QuestionFilled /></el-icon>
      </slot>
    </template>
  </el-popover>
</template>

<script setup lang="ts">
import {} from 'vue'
const props = defineProps({
  width: {
    type: [Number, String],
    default: 200
  }
})
</script>

<style lang="scss" scoped>
.icon {
  font-size: 16px !important;
  margin-top: 6px;
}
</style>