Introduce
Callback executed when an area outside the element is clicked
Example
Code
<script setup lang="ts">
const handler = () => {
window.alert('clicked outside')
}
</script>
<template>
<button v-clickoutside="handler">click</button>
</template>