[Vue]手動關閉elementUI的popover
找了許久網路資料都是vue2 版本的
紀錄一下vue3跟vue2的版本
<el-popover ref=“popoverRef"
trigger="click" title="With title" virtual-triggering persistent >
<span> Some content </span>
</el-popover>
針對 ref popoverRef進行關閉
Vue2
this.$refs.popoverRef.doClose()
Vue3
let popoverRef = ref()
popoverRef.value?.hide()