popover.vue 305 B

1234567891011121314
  1. <template>
  2. <el-popover
  3. ref="popover"
  4. placement="right"
  5. title="Title"
  6. :width="200"
  7. trigger="focus"
  8. content="this is content, this is content, this is content"
  9. >
  10. <template #reference>
  11. <el-button>Focus to activate</el-button>
  12. </template>
  13. </el-popover>
  14. </template>