The onClickOutside
function from vueuse
package can be used to trigger when a click event happens outside the ref
:
const imageRef = ref(null)
onClickOutside(imageRef, (event) => {
state.active = false
})
dom element:
<img ... ref="imageRef"/>
but is there a way to use it on two dom elements? What I want is to trigger the function, when the user clicks outside of two elements. I've tried adding the same ref
on two dom elements but the ref just gets overwritten by the second one. Said dom elements are NOT rendered in a v-for
loop.
If you want to handle this still via
vueuse
, there is an option:ignore