0👍
Another workaround to the one you suggest is to create a vue-clickaway.d.ts
file with the following content:
declare module 'vue-clickaway' {
export const mixin: any;
}
This is still a workaround as this doesn’t really add typings to the module, but only makes any
explicit.
- [Vuejs]-All elements after vue component are removed automatically
- [Vuejs]-Export Excel with Laravel, VueJS and Inertiajs
Source:stackexchange.com