1. Import and register the directive. import VueClickAway from "vue3-click-away"; export default { directives: { ClickAway: VueClickAway, }, methods: { onClickAway(event) { console.log(event); } } } 2. Check the click outside event in an element you specify. <template> ... </...