chore: correct type import from floating-vue (#2518)

This commit is contained in:
Daniel Roe 2023-12-19 22:31:39 +01:00 committed by GitHub
parent 3ae2d50bff
commit 5ce005b55a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import type { Popper as VTooltipType } from 'floating-vue/dist'
import type { Popper as VTooltipType } from 'floating-vue'
export interface Props extends Partial<typeof VTooltipType> {
content?: string