1
0

fix(building): let the compiler ignore props interface

This commit is contained in:
kolaente
2023-06-20 14:08:57 +02:00
parent 4661c2e90e
commit 78a268ab07
2 changed files with 9 additions and 55 deletions

View File

@ -63,7 +63,7 @@ import {unrefElement} from '@vueuse/core'
import {ref, type HTMLAttributes} from 'vue'
import type {RouteLocationRaw} from 'vue-router'
export interface BaseButtonProps extends HTMLAttributes {
export interface BaseButtonProps extends /* @vue-ignore */ HTMLAttributes {
type?: BaseButtonTypes
disabled?: boolean
to?: RouteLocationRaw