Open martinszeltins opened 5 months ago
The type of v-tooltip is any. There is not IDE autocomplete or type safety available.
v-tooltip
any
<template> <div v-tooltip="{ content: 'Hello' }"> Hello </div> </template>
This could be fixed by simply augmenting the ComponentCustomProperties
declare module 'vue' { interface ComponentCustomProperties { vTooltip: .......... } }
The type of
v-tooltip
isany
. There is not IDE autocomplete or type safety available.This could be fixed by simply augmenting the ComponentCustomProperties