v-tooltip is of type "any"
Abierto
- Lenguaje dominante
- TypeScript
- Estrellas
- 3.5k
- Forks
- 341
- Merge medio
- 14 min
- PR fusionados (30 d)
- 8
Descripción
The type of `v-tooltip` is `any`. There is not IDE autocomplete or type safety available.
```vue
Hello
```
This could be fixed by simply augmenting the ComponentCustomProperties
```ts
declare module 'vue' {
interface ComponentCustomProperties {
vTooltip: ..........
}
}
```
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.