chore: fix eslint warning for as prop (#3332)

This commit is contained in:
Florens Verschelde 2025-07-19 19:00:05 +02:00 committed by GitHub
parent 1d128f56f9
commit 3adcce4e36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
const { as = 'div', active } = defineProps<{
as: any
as?: string
active: boolean
}>()