floating-vue
floating-vue copied to clipboard
v-tooltip is of type "any"
The type of v-tooltip is any. There is not IDE autocomplete or type safety available.
<template>
<div v-tooltip="{ content: 'Hello' }">
Hello
</div>
</template>
This could be fixed by simply augmenting the ComponentCustomProperties
declare module 'vue' {
interface ComponentCustomProperties {
vTooltip: ..........
}
}