I am trying to create a custom directive using this example: https://stackoverflow.com/a/42389266/5470563
main.ts file:
import Vue from 'vue';
import HeaderNav from './components/HeaderNav.vue'
Vue.directive('click-outside', {
bind: function (el, binding, vnode) {
el.clickOutsideEvent = function (event) {
// here I check that click was outside the el and his childrens
if (!(el == event.target || el.contains(event.target))) {
// and if it did, call method provided in attribute value
vnode.context[binding.expression](event);
}
};
document.body.addEventListener('click', el.clickOutsideEvent)
},
unbind: function (el) {
document.body.removeEventListener('click', el.clickOutsideEvent)
},
});
new Vue({
el: '#app',
components: {
HeaderNav
}
});
And I get a compile error:
Property 'clickOutsideEvent' does not exist on type 'HTMLElement'.
How do I fix it? Or is there any better solution to bind events on outside element click?