mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* docs(components): [popover] remove `delayHide` * docs: update * docs: update --------- Co-authored-by: warmthsea <2586244885@qq.com>
28 lines
569 B
Vue
28 lines
569 B
Vue
<template>
|
|
<el-button v-popover="popoverRef" v-click-outside="onClickOutside">
|
|
Click me
|
|
</el-button>
|
|
|
|
<el-popover
|
|
ref="popoverRef"
|
|
trigger="click"
|
|
title="With title"
|
|
virtual-triggering
|
|
persistent
|
|
>
|
|
<span> Some content </span>
|
|
</el-popover>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { ClickOutside as vClickOutside } from 'element-plus'
|
|
|
|
import type { PopoverInstance } from 'element-plus'
|
|
|
|
const popoverRef = ref<PopoverInstance>()
|
|
const onClickOutside = () => {
|
|
popoverRef.value?.hide()
|
|
}
|
|
</script>
|