refactor: upgrade vue macros

This commit is contained in:
三咲智子 Kevin Deng 2023-02-08 10:20:58 +01:00
parent 36191c500f
commit 11d179b13b
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
3 changed files with 252 additions and 122 deletions

View file

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